67

可能重复:
在 jQuery 中序列化为 JSON

我在我的 javascript 代码中使用 jquery 作为库。但有时我不得不JSON.stringify()

当我想保持我的代码与 IE 兼容时,我会使用
$("head").append('<script type="text/javascript" src="../Includes/json2.js"></script>');
它来JSON.stringify()工作。jqueryfor中没有等价物JSON.stringify()吗?

4

1 回答 1

68

jQuery 中没有这样的功能。使用JSON.stringify或替代任何具有类似功能的 jQuery 插件(例如jquery-json)。

于 2012-06-20T11:56:56.760 回答