我正在使用jquery的.load函数来加载容器中的页面,但是我需要使用url传递一些参数,javascript变量保存参数的值
var data = "xyz";
$("#toggleText").load("inner/playlist.php",{name:data});
答案 0 :(得分:1)
为参数名称使用引号总是好主意。
$("#toggleText").load("inner/playlist.php",{'name':data});
另外,尝试将回调函数检查它实际上做了什么:
$("#toggleText").load("inner/playlist.php",{'name':data}, function(response, status, xhr) {
if (status == "error") {
alert("Error: " + xhr.status + " " + xhr.statusText);
}
});