我尝试使用此代码提取网站,但在测试它时,警报框未运行。
<script type="text/javascript" >
$(document).ready(function(){
$.get( "https://crossorigin.me/https://google.com", function( data ) {
alert( "Data Loaded: " + data );
});
});
</script>
答案 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的作者也警告
请不要在生产现场使用代理。
我不能保证服务的稳定性,您可能会遇到服务中断的情况。