gpt4 book ai didi

jquery - 出现此错误 "$.toJSON is not a function "

转载 作者:行者123 更新时间:2023-12-03 21:39:44 25 4
gpt4 key购买 nike

我正在尝试使用 jQuery 和 Ajax,并且使用此方法。但我收到错误 $.toJSON is not a function in my firebug 。哪里有问题?我使用 jquery 1.3.2 。谢谢

  $(document).ready(function () {
$("#S1").click(function
() {
$("#t1").slideToggle("fast");
$("#S1").css("background-color", "yellow");
var ID = $("#HiddenField2").attr("Value");
var params = new Object();
params.Key = ID;
$.ajax({
type: "POST",
url: "viewMessages.aspx/readen",
data: $.toJSON(params),
contentType: "application/json",
dataType: "json",
success: function () {

}
});
});
});

最佳答案

这是正确的。

没有$.toJSON()函数:http://api.jquery.com/jQuery.toJSON 。也许您想使用 JSON.stringify()相反。

关于jquery - 出现此错误 "$.toJSON is not a function ",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7759619/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com