SOURCE

console 命令行工具 X clear

                    
>
console
$(function(){
  $(document).on('click','.start',function(){
       $.ajax({
          url:'https://bird.ioliu.cn/v1?url=http://www.bing.com/HPImageArchive.aspx?idx=0&format=js&n=1',
          type:'GET',                                
          dataType:'jsonp',                            
          success:function(result){ 
            $('body').append(`<img src='http://bing.com/${result.images[0].url}'>`)
          },
          error:function(msg){
              alert(msg);                 //执行错误
          }
     }); 
  })
})
<button class="start">点我开始</button>

本项目引用的自定义外部资源