select change事件只能触发一次的问题
2019-06-01 本文已影响0人
Scoor
$("select").bind('change',function(){
$(this).find("option[value='1']").attr("selected","selected");
}
该方法再调用一次后无法再次触发,原因是select value没有发生改变
$("select").bind('change',function(){
$(this).find("option[value='1']").attr("selected","selected");
$(this).val("1");
}
可以解决