简单例子,看了就会用。
var json = new Object();
json["type"] = "vertex";
json["text"] = text;
json["port"] = port;
delete json["type"];
从字符串获取
// jQuery方法
$.parseJSON(jsonStr);
// js方法(ie8(兼容模式)、ie7、ie6 不支持)
// 字符串转json
JSON.parse(jsonStr);
jsonStr.parseJSON();
// json转字符串
JSON.stringify(jsonObj);
顺便推荐一下notepad,有json插件,傻瓜式下载插件很方便。