<select class=select name='' value=''>
<div id="selecter">
<option value="">------</option>
</div>
</select>
<div id ="test">test</div>
在我的javascript中
$(function(){
$('#smallGenreSelecter').html('<option value="">11111</option>');
$('#test').html('changed!!');
});
上一个#smallGenreSelecter不起作用,而下一个#test虽然有效....
答案 0 :(得分:1)
<select id="smallGenreSelecter">
<option value="">------</option>
</select>
<div id ="test">test</div>
$(function(){
$('#smallGenreSelecter').html('<option value="">11111</option>');
$('#test').html('changed!!');
});
jQuery选择器中的#something与元素的ID属性匹配。你不应该把div放在select元素中。