jsoneditor/examples/01_basic_usage.html

55 lines
1.2 KiB
HTML
Raw Normal View History

2013-01-06 05:19:38 +08:00
<!DOCTYPE HTML>
<html lang="en">
2013-01-06 05:19:38 +08:00
<head>
<meta charset="utf-8">
<title>JSONEditor | Basic usage</title>
<link href="../dist/jsoneditor.css" rel="stylesheet" type="text/css">
<script src="../dist/jsoneditor.js"></script>
<style type="text/css">
#jsoneditor {
width: 500px;
height: 500px;
}
</style>
2013-01-06 05:19:38 +08:00
</head>
<body>
<p>
<button id="setJSON">Set JSON</button>
<button id="getJSON">Get JSON</button>
</p>
<div id="jsoneditor"></div>
2013-01-06 05:19:38 +08:00
<script>
// create the editor
const container = document.getElementById('jsoneditor')
const options = {}
const editor = new JSONEditor(container, options)
2013-01-06 05:19:38 +08:00
// set json
document.getElementById('setJSON').onclick = function () {
const json = {
'array': [1, 2, 3],
'boolean': true,
'color': '#82b92c',
'null': null,
'number': 123,
'object': {'a': 'b', 'c': 'd'},
'time': 1575599819000,
'string': 'Hello World',
'onlineDemo': 'https://jsoneditoronline.org/'
}
editor.set(json)
}
2013-01-06 05:19:38 +08:00
// get json
document.getElementById('getJSON').onclick = function () {
const json = editor.get()
alert(JSON.stringify(json, null, 2))
}
</script>
2013-01-06 05:19:38 +08:00
</body>
</html>