我正在尝试使用数组中的数据动态创建一个选择框,我尝试观看一些JSON教程,但仍然遇到一些麻烦。
var clothes = [
Red Dress:"reddress.png",
Blue Dress:"bluedress.png",
Black Hair Pin:"hairpin.png"
];
var select = '<select id="clothing_options">';
for(var i=0;i<clothes.length;i++)
{
select +='<option value="'+secondPart[i]+'">'+firstPart[i]+'</option>';
}
$('#select_box_wrapper').append(select+'</select>');
$('#clothing_options').change(function() {
var image_src = $(this).val();
$('#clothing_image').attr('src','http://www.imagehosting.com/'+image_src);
});
因为您可以看到代码没有完全正常运行,因为它编写不正确。如何从第二部分获取值的数据,从第一部分获取选项文本?基本上html应该看起来像这样
<select id="clothing_options">
<option value="reddress.png">Red Dress</option>
<option value="bluedress.png">Blue Dress</option>
<option value="hairpin.png">Black Hair Pin</option>
</select>
感谢任何解释或建议。只是希望这段代码能够正常工作,因为我只是为自己的课程做了这些代码
答案 0 :(得分:3)
您可以将数组更改为JSON对象..
var clothes = {
"Red Dress":"reddress.png",
"Blue Dress":"bluedress.png",
"Black Hair Pin":"hairpin.png"
};
然后迭代变得更容易..
for(var item in clothes)
{
$('<option value="'+item+'">'+clothes[item]+'</option>').appendTo('#clothing_options');
}
这是HTML:
<div id="select_box_wrapper">
<select id="clothing_options"></select>
</div>
答案 1 :(得分:1)
第一个问题:
var clothes = {
Red_Dress:"reddress.png",
Blue_Dress:"bluedress.png",
Black_Hair_Pin:"hairpin.png"
};
您不能在标识符中包含空格。
其次,循环一个对象:
for (var key in clothes)
{
select +='<option value="'+clothes[key]+'">'+key+'</option>';
}
当然,这会产生在选择框中显示“Red_Dress”的不良影响。
var clothes = {
"Red Dress":"reddress.png",
"Blue Dress":"bluedress.png",
"Black Hair Pin":"hairpin.png"
};
这将解决它。