0

我正在使用 jquery 的 .load 函数在容器中加载页面,但我需要通过 url 传递一些参数,javascript 变量保存参数的值

    var data = "xyz";
$("#toggleText").load("inner/playlist.php",{name:data});
4

1 回答 1

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);
  }
});
于 2012-10-28T14:44:00.827 回答