2013-01-06 05:19:38 +08:00
|
|
|
<!DOCTYPE HTML>
|
2020-09-23 16:23:38 +08:00
|
|
|
<html lang="en">
|
2013-01-06 05:19:38 +08:00
|
|
|
<head>
|
2020-09-23 16:23:38 +08:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2014-05-30 04:13:37 +08:00
|
|
|
<title>JSONEditor | Viewer</title>
|
2015-02-28 04:54:04 +08:00
|
|
|
|
2015-03-01 03:47:23 +08:00
|
|
|
<link href="../dist/jsoneditor.css" rel="stylesheet" type="text/css">
|
|
|
|
<script src="../dist/jsoneditor.js"></script>
|
|
|
|
|
2015-02-28 04:54:04 +08:00
|
|
|
|
2013-11-16 01:11:50 +08:00
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
font: 11pt arial;
|
|
|
|
}
|
|
|
|
#jsoneditor {
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
</style>
|
2013-01-06 05:19:38 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2013-11-16 01:11:50 +08:00
|
|
|
<p>
|
|
|
|
This editor is read-only (mode='viewer').
|
|
|
|
</p>
|
|
|
|
<div id="jsoneditor"></div>
|
2013-01-06 05:19:38 +08:00
|
|
|
|
2015-02-28 04:54:04 +08:00
|
|
|
<script>
|
2019-08-29 21:45:32 +08:00
|
|
|
const container = document.getElementById('jsoneditor')
|
2013-08-28 04:50:20 +08:00
|
|
|
|
2019-08-29 21:45:32 +08:00
|
|
|
const options = {
|
2013-11-16 01:11:50 +08:00
|
|
|
mode: 'view'
|
2019-08-29 21:45:32 +08:00
|
|
|
}
|
2013-08-28 04:50:20 +08:00
|
|
|
|
2019-08-29 21:45:32 +08:00
|
|
|
const json = {
|
2013-11-16 01:11:50 +08:00
|
|
|
'array': [1, 2, 3],
|
|
|
|
'boolean': true,
|
|
|
|
'null': null,
|
|
|
|
'number': 123,
|
|
|
|
'object': {'a': 'b', 'c': 'd'},
|
|
|
|
'string': 'Hello World'
|
2019-08-29 21:45:32 +08:00
|
|
|
}
|
2013-08-28 04:50:20 +08:00
|
|
|
|
2019-08-29 21:45:32 +08:00
|
|
|
const editor = new JSONEditor(container, options, json)
|
2013-11-16 01:11:50 +08:00
|
|
|
</script>
|
2013-01-06 05:19:38 +08:00
|
|
|
</body>
|
|
|
|
</html>
|