반응형
Notice
Recent Posts
Recent Comments
관리 메뉴

간단한 개발관련 내용

[Javascript] JSON.parse ie 오류. 본문

Computer Science/Javascript

[Javascript] JSON.parse ie 오류.

vincenzo.dev.82 2014. 2. 25. 20:49
반응형

JSON Tutorial



JSON

JSON: JavaScript Object Notation.

JSON is syntax for storing and exchanging text information. Much like XML.

JSON is smaller than XML, and faster and easier to parse.



 페이지에서 json_encode 된 값을 JSON.parse 로 받아서 처리하던 도중 ie7 포함 이하 버전에서 지원되지 않는 이슈를 발견하게 되었다.

그래서... jQuery 를 사용함...


결론은  JSON.parse  대신  $.parseJSON 사용함.


끝...


반응형