jsoneditor/examples/requirejs_demo/scripts/main.js

26 lines
646 B
JavaScript
Raw Normal View History

var module = '../../../dist/jsoneditor';
require([module], function (JSONEditor) {
// create the editor
var container = document.getElementById('jsoneditor');
var editor = new JSONEditor(container);
2013-01-06 05:19:38 +08:00
// set json
document.getElementById('setJSON').onclick = function () {
var json = {
'array': [1, 2, 3],
'boolean': true,
'null': null,
'number': 123,
'object': {'a': 'b', 'c': 'd'},
'string': 'Hello World'
2013-01-06 05:19:38 +08:00
};
editor.set(json);
};
2013-01-06 05:19:38 +08:00
// get json
document.getElementById('getJSON').onclick = function () {
var json = editor.get();
alert(JSON.stringify(json, null, 2));
};
2013-01-06 05:19:38 +08:00
});