1 //渲染 下拉框被选中.
$("#processtyle option").each(function(){
if($(this).val() == procesStyle){
$(this).attr("selected",true)
//$(this).attr("selected","selected")两者都可以选中
}
});
时间: 2024-10-20 21:26:33