尝试自动扫描其他域上的Flash嵌入链接

时间:2018-11-14 20:03:02

标签: javascript jquery html ajax cors

我尝试使用此代码提取网站,但在测试它时,警报框未运行。

<script type="text/javascript" >
$(document).ready(function(){
$.get( "https://crossorigin.me/https://google.com", function( data ) {
alert( "Data Loaded: " + data );
});
});
</script>

1 个答案:

答案 0 :(得分:0)

the documentation开始,尝试实现.fail方法以查看问题所在。

var jqxhr = $.get( "example.php", function() {
  alert( "success" );
})
  .done(function() {
    alert( "second success" );
  })
  .fail(function() {
    alert( "error" );
  })
  .always(function() {
    alert( "finished" );
  });

// Perform other work here ...

// Set another completion function for the request above
jqxhr.always(function() {
  alert( "second finished" );
});

crossorigin.com的作者也警告

  

请不要在生产现场使用代理。

     

我不能保证服务的稳定性,您可能会遇到服务中断的情况。