基于javascript的JSON格式页面展示美化方法
更新时间:2014年07月02日 16:42:16 投稿:whsnow
本文介绍的方法基于javascript,css和myFunction结合可实现页面展示转换,下面有个示例,大家可以参考下
{"name": "monkey","age": "24","height": 164.0}
如果想让以上json字符串在页面上展示的比较易读,即变成下面的style:
{ "name": "monkey", "age": "24", "height": 164.0cm }
本文介绍的方法基于javascript ,代码如下:
<html> <head>/ //style中是css代码 <style type="text/css"> body { white-space: pre; font-family: monospace; } </style> //script中是javascript代码 <script> window.error_id_msgs = <%= error_id_msgs | raw %>; function myFunction() { document.body.innerHTML = ""; document.body.appendChild(document.createTextNode(JSON.stringify(window.error_id_msgs, null, 4))); } </script> </head> <body onload="myFunction()"> //表示页面加载时调用myFunction() </body> </html>
其中window.error_id_msgs是所要转换的json对象,css和myFunction结合可实现页面展示转换
相关文章
Javascript拖拽系列文章1之offsetParent属性
这个系列文章主要是讲述实现Javascript拖拽功能的基础知识,并将在最后给出一个完整的示例。适合对拖拽完全不懂的人阅读2008-09-09bootstrap-table formatter 使用vue组件的方法
Bootstrap table是国人开发的一款基于 Bootstrap 的 jQuery 表格插件,通过简单的设置,就可以拥有强大的单选、多选、排序、分页,以及编辑、导出、过滤(扩展)等等的功能。这篇文章重点给大家介绍bootstrap-table formatter 使用vue组件的方法,感兴趣的朋友一起看看2019-05-05
最新评论