我不知道我是否错误地使用了 .after 但我的理解是它应该在我指定的元素之后显示元素?- Option1 选择后的 hello world 选择框?
<select id="cselect" >
<option value="Option 1">Option 1</option>
</select>
$('#cselect').chosen();
var test = '<select id="dselect" ><option>Hello World</option></select>';
$('#cselect').after(test);
$('#dselect').chosen();
在这里小提琴 - http://jsfiddle.net/jHvmg/4/
我错过了什么?TIA