我正在用 json 填充 div,但我认为这不是最好的方法。似乎有很多代码,有些似乎可以共享。
//data for DOM
$.getJSON('json/device.json', function (data) {
var items = [];
$.each(data[0].attributes, function (key, val) {
items.push('<li id="' + key + '">' + ' ' + val + '</li>');
});
$('<ol/>', {
'class': 'raw-list',
html: items.join('')
}).hide().fadeIn().appendTo('.json');
});
$.getJSON('json/device.json', function (data) {
var items = [];
$.each(data[0].status, function (key, val) {
items.push(val);
});
$('<span/>', {
'class': 'sort-label error',
html: items.join('')
}).hide().fadeIn().appendTo('.status-input .sort-label');
});
$.getJSON('json/device.json', function (data) {
var items = [];
$.each(data[0].location, function (key, val) {
items.push(val);
});
$('<span/>', {
'class': 'sort-label',
html: items.join('')
}).hide().fadeIn().appendTo('.location-input .sort-label');
});
$.getJSON('json/device.json', function (data) {
var items = [];
$.each(data[0].type, function (key, val) {
items.push(val);
});
$('<span/>', {
'class': 'sort-label',
html: items.join('')
}).hide().fadeIn().appendTo('.type-input .sort-label');
});
$.getJSON('json/device.json', function (data) {
var items = [];
$.each(data[0].brand, function (key, val) {
items.push(val);
});
$('<span/>', {
'class': 'sort-label',
html: items.join('')
}).hide().fadeIn().appendTo('.brand-input .sort-label');
});