如何将php脚本中的数据发送到jquery.load函数?

u1ehiz5o  于 2021-09-13  发布在  Java
关注(0)|答案(0)|浏览(182)

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);
 }
});

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题