我想在使用jquery
添加新项目时$("#dve option").dblclick(function() {
$(this).clone().appendTo("#edno");
});
要添加的项目,如果选择到选择框,该怎么做?
答案 0 :(得分:1)
请参阅 jQuery v1.6
中的jQuery.prop()
$(this).clone().appendTo("#edno").prop('selected',true)
另请参阅attr()
和prop()
here
答案 1 :(得分:1)
你可以使用..
$(this).clone().appendTo("#edno").attr('selected',true);
希望它的工作