JSON undefined in IE7

只愿长相守 提交于 2019-12-05 05:55:56
Luca Matteis

You can use parseJSON available in jQuery.

You don't need to parse JSON manually. You could use the getJSON function:

$.getJSON('/ajax/buy', { 'categoryname' : chosenSelected }, function(data) {

    // data will be already a parsed JSON object
});

The parse method you are trying to call is available in the json2 library.

You need add a JSON parser. The old browsers dont include that.

1 - Go to repository: https://github.com/douglascrockford/JSON-js/

2 - Download and include json2.js in your site or app.

That is all.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!