JSON.stringify(要转换的object对象)。此方法返回的就是一个类似于 {“name”:"张三","age":18} 这样的字符串
jquery中没有这样的方法,只有将字符串转换为对象的方法:jQuery.parseJSON( json)。 如果将object对象转换为json字符串,在现代浏览器中可以用JSON.stringify()这个原生方法。在IE6/7以及IE8兼容模式中,可以先引用 js之后再采用JSON.stringify()。
需要加载库包,地址为:https://github.com/Krinkle/jquery-json
在jquery之后加载这个库包
转换方式为:
var where = new Object();
where['where_id_filter'] = "where_id_filter";
where['where_checkids'] = "where_checkids"
where = jQuery.toJSON(where);
alert(where);
JSON.stringify(jsonobj)
var dataObj=eval("("+data+")");