JsonToHtml

Posted 扰扰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JsonToHtml相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>      
<html lang="en">      
<head>      
    <meta charset="UTF-8">      
    <title>js实现xml转json和json转xml</title>    
    <style type="text/css">    
        html,body{width:100%;height:100%;margin:0;}     
    </style>    
</head>      
<body>     
      <textarea id="xml" style="width:45%;height:700px;"></textarea>
      <textarea id="json" style="width:45%;height:700px;"></textarea>
      <button id="tojson">xml转json</button>
      <button id="toxml">json转xml</button>
</body>      
</html>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.js"></script>    
<script type="text/javascript" src="http://www.jsons.cn/Down/jquery.json2xml.js"></script>
<script type="text/javascript" src="http://www.jsons.cn/Down/jquery.xml2json.js"></script>
<script type="text/javascript"> 
//参考链接:http://www.jsons.cn/articleinfo/8/
 $(function(){

  $("#tojson").click(function(){
    var str=$("#xml").val();
    var json_obj = $.xml2json(str);
    console.log(json_obj);
    $("#json").val(JSON.stringify(json_obj));
  });
  $("#toxml").click(function(){
    var str=$("#json").val();
    str=JSON.parse(str);
    var xml_content = $.json2xml(str);
    console.log(xml_content);
    $("#xml").val(xml_content);
  });
 });
</script> 

 

以上是关于JsonToHtml的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器