admin管理员组

文章数量:1341419

I have some JS that runs fine in FF and IE but in Chrome I see the following error:

uncaught exception ReferenceError: JSON is not defined

I presume I need to include something but I'm not sure what. Help? Also, any clue why this might work on IE/FF but not Chrome?

Btw, I'm using JSON.stringify() in my script.

UPDATE: JSON.stringify is now available in chrome (couldn't find when it was introduced).

I have some JS that runs fine in FF and IE but in Chrome I see the following error:

uncaught exception ReferenceError: JSON is not defined

I presume I need to include something but I'm not sure what. Help? Also, any clue why this might work on IE/FF but not Chrome?

Btw, I'm using JSON.stringify() in my script.

UPDATE: JSON.stringify is now available in chrome (couldn't find when it was introduced).

Share edited Nov 23, 2012 at 13:02 Marc P 5801 gold badge7 silver badges21 bronze badges asked Sep 1, 2009 at 21:56 psychotikpsychotik 39k35 gold badges103 silver badges136 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

The JSON object is not yet part of the standard IIRC, but is expected to be soon. In the meantime, browsers are free to implement it at will, and that's probably what you are seeing here.

Your best bet is to get a separate library that does the same thing and use it for the meantime until native implementations are more widespread. You can find a very good one here (Link at the bottom).

本文标签: javascriptJSON is not definedchromeStack Overflow