gpt4 book ai didi

jquery - 如何将 JSFiddle echo 功能与 JQuery 结合使用?

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

我已阅读 jsFiddle 用户指南的 JSON echo feature但没能生成一个可用的 jsFiddle 来使用 JQuery 回显 JSON 消息。

如何创建 jsFiddle 来回显其指南中的 JSON:

data: {
json: JSON.encode({
text: 'some text',
array: [1, 2, 'three'],
object: {
par1: 'another text',
par2: [3, 2, 'one'],
par3: {}
}
}),
delay: 3
}

提供的一个示例是在 Mootools 中,我从未使用过。因此,从 mootools 示例到 JQuery 的简单转换就足够了。

最佳答案

var data = {
json: $.toJSON({
text: 'some text',
array: [1, 2, 'three'],
object: {
par1: 'another text',
par2: [3, 2, 'one'],
par3: {}
}
}),
delay: 3
}


$.ajax({
url:"/echo/json/",
data:data,
type:"POST",
success:function(response)
{
console.log(response);
}
});

Live Demo

注意我添加了附加资源..jquery-json

Demo with FireBug Console on View (无需拉出开发者控制台即可看到返回)

关于jquery - 如何将 JSFiddle echo 功能与 JQuery 结合使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7194408/

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