The JSON.stringify() method converts a value to JSON,
optionally replacing values if a replacer function is specified,
or optionally including only the specified properties if a replacer array is specified.
alert(JSON.stringify({
제품명: '요구르트 드링크',
내용량: '30ml',
영양성분: {
열량: '100kcal',
탄수화물: '14g',
당류: '10g'
}
}));
[출력]
{{제품명: '요구르트 드링크',내용량: '30ml',영양성분: {열량: '100kcal',탄수화물: '14g',당류: '10g'}}}
alert(JSON.stringify({
... ... ...
}
}, null, 2));
[출력]
{{
제품명: '요구르트 드링크',
내용량: '30ml',
영양성분: {
열량: '100kcal',
탄수화물: '14g',
당류: '10g'
}
}}
'jQuery' 카테고리의 다른 글
jQuery API List - 확장 집합 관련/ (0) | 2014.07.31 |
---|---|
jQuery 다시 보기 (0) | 2014.07.31 |
jQuery jqXHR 객체 (0) | 2014.07.18 |
jQuery Ajax Sample (0) | 2014.07.17 |
jQuery Ajax 사용하기 (0) | 2014.07.17 |