test.js
$(#div).load("test.php"),{},function(data, response, status, xhr){
}
想象一下一个基本的jquery.load()函数,如何将数据(如变量)从php脚本返回回调函数?
我不知道如何使用数据、响应、状态参数等。
编辑:我仅通过以下操作就成功实现了这一目标:
test.php
echo json_encode(true);
test.js
$.ajax('test.php', {
type: 'POST', // http method
data: {}, // data to submit
dataType: 'json',
success: function (data, status, xhr) {
console.log(data);
},
error: function (jqXhr, textStatus, errorMessage) {
$('p').append('Error' + errorMessage);
}
});
暂无答案!
目前还没有任何答案,快来回答吧!