我有以下JSON数据
{"Date Created":"date_entered","Date Modified":"date_modified","Description":"description"}
如何使用此json数据使用jquery填充下拉列表?
答案 0 :(得分:1)
假设数据已经被解析为javascript对象,你需要循环对象键并构造html,如:
var html='<option value=""></option>';
for(key in data){
html += '<option value="' + data[key] + '">' + key + '</option>';
}
$('#mySelect').html( html );
的 DEMO 强>