分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 代码编程

JSONView

发布时间:2023-09-06 01:13责任编辑:彭小芳关键词:暂无标签
<div class="modal fade bs-example-modal-lg" id="jsonModal" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel"> ?????<div class="modal-dialog" role="document" style=""> ??????????????????????<div class="modal-content col-md-12" style="width:1000px !important;margin:50%;transform:translate(-50%,-50%);"> ?????????????????<div class="modal-header" style="padding-left:0;padding-right:0;"> ??????????????????????<button type="button" class="close" data-dismiss="modal" aria-label="Close" style=""><span aria-hidden="true">&times;</span></button> ??????????????????????<h4 class="modal-title notice_title" id="myModalLabel" style="font-family:‘微软雅黑‘;font-size:16px;color:#383838;">JSON查看</h4> ?????????????????????????????????????????</div> ?????????????????<div class="modal-body col-md-12" style="padding-left:0;padding-right:0;max-height:800px;overflow-y:scroll;"> ????????????????????????<div style="margin:10px;"> ?????????????????????????????<button id="collapse-btn">收起</button> ?????????????????????????<button id="expand-btn">展开</button> ?????????????????????????????????????????????????</div> ??????????????????????????<div id="jsonContent"></div> ?????????????????</div> ?????????????????????????????</div> ??????????????</div> ??????????????????</div>
$(‘#operationTable‘).on(‘click‘, ‘span.contentHistory‘, function (e) {$(‘#jsonModal‘).modal({backdrop: ‘static‘});var datalist=$(this).data(‘content‘);datalist=JSON.parse(datalist);// ???var json = {"hey": "guy","anumber": 243,"anobject": {"whoa": "nuts","anarray": [1,2,"thr<h1>ee"],"anotherarray": [1, 2], "more":"stuff"},"awesome": true,"bogus": false,"meaning": null, "japanese":"明日がある。", "link": "http://jsonview.com", "notLink": "http://jsonview.com is great"};$(‘#jsonContent‘).JSONView(datalist);e.stopPropagation();$(this).unbind("click"); //移除clickreturn false;});$(‘#collapse-btn‘).on(‘click‘, function() {$(‘#jsonContent‘).JSONView(‘collapse‘);});$(‘#expand-btn‘).on(‘click‘, function() {$(‘#jsonContent‘).JSONView(‘expand‘);});$(‘#toggle-btn‘).on(‘click‘, function() {$(‘#jsonContent‘).JSONView(‘toggle‘);});$(‘#toggle-level1-btn‘).on(‘click‘, function() {$(‘#jsonContent‘).JSONView(‘toggle‘, 1);});$(‘#toggle-level2-btn‘).on(‘click‘, function() {$(‘#jsonContent‘).JSONView(‘toggle‘, 2);});

JSONView

原文地址:http://www.cnblogs.com/zjpzjp/p/7575575.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved