$("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");
}
可以解决
网友评论