当前位置 : 主页 > 网络编程 > PHP >

HTML显示json字符串并且进行格式化

来源:互联网 收集:自由互联 发布时间:2023-09-06
通过pre标签进行格式化展示,使用JSON.stringify()方法转换。 代码如下: html head titleHTML显示json字符串并且进行格式化/title /head body p id="show_p"{ "name": "Brett", "address":"北京路23号", "email": "


通过pre标签进行格式化展示,使用JSON.stringify()方法转换。

代码如下:

<html>

<head>
<title>HTML显示json字符串并且进行格式化</title>
</head>

<body>
<p id="show_p">{ "name": "Brett", "address":"北京路23号", "email": "123456@qq.com" }</p>
<pre id="out_pre"></pre>

</body>
<script type="text/javascript">

  var text = document.getElementById('show_p').innerText; //获取json格式内容

var result = JSON.stringify(JSON.parse(text), null, 2);//将字符串转换成json对象

document.getElementById('out_pre').innerText= result ;
  

</script>

</html>

注意:如果需要转换的格式是字符串,就要进行:JSON.parse()转换,否则直接使用JSON.stringify()无效。



【文章转自荷兰服务器 http://www.558idc.com/helan.html 欢迎留下您的宝贵建议】
网友评论