好的,我有这个jQuery脚本使用ajax加载来自php文件的响应,但我想做的是从php脚本加载可能两个变量而不是整个页面。
$(document).ready(function() {
$.ajaxSetup({
cache: false
});
$("#object_area").load("test.php");
var refreshId = setInterval(function() {
$("#object_area").load("test.php");
},10000);
});
所以我想要的是能够说从php页面加载variable1到object_area,然后加载variable2到object_area2,如果这有意义吗?
由于
答案 0 :(得分:1)