Created
October 5, 2015 15:37
-
-
Save sunnydoll/5cd968542bb80f99e21a to your computer and use it in GitHub Desktop.
Convertion between XML and JSON
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
<body> | |
<h1>X2JS Demo</h1> | |
<button id="convertToJsonBtn">XML => JSON</button> | |
<button id="convertToXmlBtn">JSON => XML</button> | |
<div> | |
<h4>XML:</h4> | |
<textarea id="xmlArea" cols="55" rows="15"></textarea> | |
</div> | |
<div> | |
<h4>JSON:</h4> | |
<textarea id="jsonArea" cols="55" rows="15"></textarea> | |
</div> | |
</body> | |
<script type='text/javascript' src="https://x2js.googlecode.com/hg/xml2json.js"></script> | |
<script> | |
var x2js = new X2JS(); | |
function convertXml2JSon() { | |
$("#jsonArea").val(JSON.stringify(x2js.xml_str2json($("#xmlArea").val()))); | |
} | |
function convertJSon2XML() { | |
$("#xmlArea").val(x2js.json2xml_str($.parseJSON($("#jsonArea").val()))); | |
} | |
$("#xmlArea").val("<root><child><textNode>First & Child</textNode></child><child><textNode>Second Child</textNode></child><testAttrs attr1='attr1Value'/></root>"); | |
convertXml2JSon(); | |
convertJSon2XML(); | |
$("#convertToJsonBtn").click(convertXml2JSon); | |
$("#convertToXmlBtn").click(convertJSon2XML); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment