2016-01-12 18:38:38 +08:00
|
|
|
<!DOCTYPE HTML>
|
2020-09-23 16:23:38 +08:00
|
|
|
<html lang="en">
|
2016-01-12 18:38:38 +08:00
|
|
|
<head>
|
2020-09-23 16:23:38 +08:00
|
|
|
<meta charset="utf-8">
|
2016-01-12 18:38:38 +08:00
|
|
|
|
|
|
|
<link href="../dist/jsoneditor.min.css" rel="stylesheet" type="text/css">
|
|
|
|
<script src="../dist/jsoneditor-minimalist.min.js"></script>
|
|
|
|
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
font: 10.5pt arial;
|
|
|
|
color: #4d4d4d;
|
|
|
|
line-height: 150%;
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
code {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
|
|
|
|
#jsoneditor {
|
|
|
|
width: 500px;
|
|
|
|
height: 500px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
Switch editor mode using the mode box.
|
|
|
|
Note that the mode can be changed programmatically as well using the method
|
|
|
|
<code>editor.setMode(mode)</code>, try it in the console of your browser.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<div id="jsoneditor"></div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var container, options, json, editor;
|
|
|
|
|
|
|
|
container = document.getElementById('jsoneditor');
|
|
|
|
|
|
|
|
options = {
|
|
|
|
mode: 'tree',
|
2019-07-09 02:00:34 +08:00
|
|
|
modes: ['code', 'form', 'text', 'tree', 'view', 'preview'], // allowed modes
|
2016-01-12 18:38:38 +08:00
|
|
|
onError: function (err) {
|
|
|
|
alert(err.toString());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
json = {
|
|
|
|
"array": [1, 2, 3],
|
|
|
|
"boolean": true,
|
2018-08-22 18:10:15 +08:00
|
|
|
"color": "#82b92c",
|
2016-01-12 18:38:38 +08:00
|
|
|
"null": null,
|
|
|
|
"number": 123,
|
|
|
|
"object": {"a": "b", "c": "d"},
|
|
|
|
"string": "Hello World"
|
|
|
|
};
|
|
|
|
|
|
|
|
editor = new JSONEditor(container, options, json);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|