jsoneditor/examples/02_viewer.html

44 lines
695 B
HTML
Raw Normal View History

2013-01-06 05:19:38 +08:00
<!DOCTYPE HTML>
<html>
<head>
<title>JSONEditor | Viewer</title>
<script src="../dist/jsoneditor.js"></script>
<style type="text/css">
body {
font: 11pt arial;
}
#jsoneditor {
width: 500px;
}
</style>
2013-01-06 05:19:38 +08:00
</head>
<body>
<p>
This editor is read-only (mode='viewer').
</p>
<div id="jsoneditor"></div>
2013-01-06 05:19:38 +08:00
<script>
var container = document.getElementById('jsoneditor');
2013-08-28 04:50:20 +08:00
var options = {
mode: 'view'
};
2013-08-28 04:50:20 +08:00
var json = {
'array': [1, 2, 3],
'boolean': true,
'null': null,
'number': 123,
'object': {'a': 'b', 'c': 'd'},
'string': 'Hello World'
};
2013-08-28 04:50:20 +08:00
var editor = new JSONEditor(container, options, json);
</script>
2013-01-06 05:19:38 +08:00
</body>
</html>