我正在尝试使用简单的PHP脚本从我的网站获取数据。并尝试使用fiddler中的ajax来敲击网址,但它总是给出错误。有人可以帮忙...我对此很新。
这是Fiddler网址:
$(document).ready(function() {
log('document ready');
});
var i = 0;
function log(s) {
$('#log').val($('#log').val() + '\n' + (++i) + ': ' + s);
}
var jqxhr = $.getJSON( "http://techiezhub.com/sample.php", function(data) {
log( 'success'+data );
})
.done(function() {
log( 'second success' );
})
.fail(function() {
log( 'error' );
})
.always(function() {
log( 'complete' );
});
// Perform other work here ...
// Set another completion function for the request above
jqxhr.complete(function() {
log( 'second complete' );
});
由于 雅库布。