http://leo108.com/pid-1996.aspjavascript
JsonFormater
基於jQuery的json格式化、高亮庫
核心代碼參考天馬行空工做室,本人只作了模塊化和一些代碼優化。css
demo
http://leo108.github.io/jsonFormater/html
github地址
https://github.com/leo108/jsonFormaterjava
使用方式
引入jQuery
1 |
<script type= "text/javascript" src= "jquery-1.7.2.min.js" ></script> |
注意:jQuery版本要求>=1.7.2jquery
引入jsonFormater.js和jsonFormater.css
1 |
<script type= "text/javascript" src= "jsonFormater.js" ></script> |
2 |
<link href= "jsonFormater.css" type= "text/css" rel= "stylesheet" /> |
在html中新增一個空的元素做爲顯示的容器
例如<div id='container'></div>
git
調用JsonFormater
1 |
$(document).ready( function (){ |
5 |
var jf = new JsonFormater(options); |
6 |
jf.doFormat( '{"string":"leo108"}' ); |
效果圖
詳細使用方式
配置
支持的配置以及默認配置以下:github
6 |
imgCollapsed: "images/Collapsed.gif" , |
7 |
imgExpanded: "images/Expanded.gif" , |
方法
1 |
var obj = new JsonFormater({dom: '#container' }); |
5 |
obj.collapseLevel(level) |