Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
甚至我的代码也可以使用 ajax 传递值。我仍然想将数据转换为 json 类型,然后将其传递给 ajax,如下所示:
{"name":"test"}
现在数据如下:
var data = { 'name': $("#name").val() }
我怎样才能得到json?谢谢您的回答!
这里:
var jsonData = JSON.stringify(data);
var jsonString= JSON.stringify(obj);
请参考此链接
如何在 JavaScript 中创建 JSON 字符串?