Created
October 18, 2013 02:27
-
-
Save springcome/7035595 to your computer and use it in GitHub Desktop.
json, jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// json객체를 문자열로 변환 | |
$.toJSON(object); | |
// json배열을 만들어 데이터 넣기 | |
var jsonArr = {'info':[]}; | |
jsonArr.info.push( | |
{'name':'kim'}, | |
{'age':26} | |
); | |
jsonArr.info.push( | |
{'name':'lee'}, | |
{'age':40} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment