我的 java sevlet 中有一张地图,并将其转换为可以正常工作的 json 格式。
当我在下面执行此功能时,它会创建一个下拉菜单,但它将每个字符都作为选项?这就是我得到的:
$(document).ready(function(){
var temp= '${temp}';
//alert(options);
var $select = $('#down');
$select.find('option').remove();
$.each(temp, function(key, value) {
$('<option>').val(key).text(value).appendTo($select);
});
});
以 JSON 格式映射内容
{"1" : "string","2" : "string"}