code

JSON.stringify에 해당하는 jquery

codestyles 2020. 11. 12. 08:16
반응형

JSON.stringify에 해당하는 jquery


중복 가능성 :
jQuery에서 JSON으로 직렬화

내 자바 스크립트 코드에서 jquery를 라이브러리로 사용하고 있습니다. 그러나 때때로 나는 JSON.stringify().

나는 내 코드 IE 호환 I 사용을 유지하려는 경우
$("head").append('<script type="text/javascript" src="../Includes/json2.js"></script>');
얻을 내 JSON.stringify()일을합니다. 에 상응하는 jquery것이 JSON.stringify()없습니까?


jQuery에는 이러한 기능이 없습니다. JSON.stringify유사한 기능을 가진 jQuery 플러그인 (예 : jquery-json )을 사용 하거나 대체합니다 .

참고 URL : https://stackoverflow.com/questions/11118947/jquery-equivalent-for-json-stringify

반응형