我有一个用户可以输入的输入字段。我试图弄清楚如何使对 json 的调用成为动态的。所以如果这个人输入了printer1,它将使用printer1.json。如果他们输入keyboard5,它将加载keyboard5 json。
这是我的html
<input type="text" value="" class="call-json edit-device" />
这是我的 jQuery
$.getJSON('json/printer1.json', function (data) {
var items = [];
$.each(data[0].attributes['edgebox.stat.prop.type'], function (key, val) {
items.push(val);
});
displaySortLabel(items, "type-details");
var items = [];
$.each(data[0].attributes['edgebox.stat.prop.serial.number'], function (key, val) {
items.push(val);
});
displaySortLabel(items, "serial-number-details");