{"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结合可实现页面展示转换
java怎么学习?java怎么入门?java在哪学?java怎么学才快?不用担心,这里为大家提供了java速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号