以下是我的代码
$("#item").dropdown({
change : function(Val){
if( Val != undefined ){
if( Val == "" ){
$("#item> optgroup > option:selected").removeAttr("selected");
$("#item option:first").attr('selected','selected');
}else{
$("#item option:first").removeAttr('selected');// not working
}
}
}
});
当我选择其值为null的第一个选项时,它会起作用,但当我选择其他选项时,下拉保持原样。
尝试了其他选项,例如
$("#item option:first").removeAttr('selected');
无法使用.prop()
或.removeProp()