尝试使用jquery load()函数,但似乎不适合我
$('#result').load('http://michaelschauffler.com/test.html', function(request, status, xhr){
if (status == "error"){ // and it is
// xhr.status is 0 and xhr.statusTest is error
// then what is the error.
}
});
这不是我想要做的事情,但我似乎无法找到为什么事情似乎不适合我,就像我找到的例子。 http://jsfiddle.net/webdevem/vxdHs/
所以也许我的目标页面上缺少一些东西。
答案 0 :(得分:1)
你忘了写if条件的结束括号。
请查看以下代码。
$(document).ready(function(){
$('#result').load('http://michaelschauffler.com/test.html', function(request, status, xhr){
if (status == "error"){ // and it is
// xhr.status is 0 and xhr.statusTest is error
// then what is the error.
}
});
});
答案 1 :(得分:1)