如何使用Jquery解析返回的Json,然后写入select下拉框?
HTML code
<select id="sel"></select>
javascript code
jQuery(document).ready(function(){
var jsonstring= "{\"text1\":\"value1\",\"text2\":\"value2\",\"text3\":\"value3\"}" ;
var jsonObj = jQuery.parseJSON(jsonstring);
//jquery 1.4.0版本有jQuery.parseJSON函数,之前的版本如果没有此函数,
//可以用如此转换 var jsonObj = eval("("+ jsonstring +")");
var optionstring = "";
for(var item in jsonObj)
{
optionstring += "<option value=\""+ jsonObj[item] +"\" >"+ item +"</option>";
}
jQuery("#sel").html(optionstring);
});
select是一个计算机函数,位于头文件#include <sys/select.h> 。该函数用于监视的文件描述符的变化情况--读写或是异常。
<select id="sel"></select>
javascript code
jQuery(document).ready(function(){
var jsonstring= "{\"text1\":\"value1\",\"text2\":\"value2\",\"text3\":\"value3\"}" ;
var jsonObj = jQuery.parseJSON(jsonstring);
//jquery 1.4.0版本有jQuery.parseJSON函数,之前的版本如果没有此函数,
//可以用如此转换 var jsonObj = eval("("+ jsonstring +")");
var optionstring = "";
for(var item in jsonObj)
{
optionstring += "<option value=\""+ jsonObj[item] +"\" >"+ item +"</option>";
}
jQuery("#sel").html(optionstring);
});