jquery 设置select 默认值

$('#@(Perfix)OrgType').children("option").each(function () {
var temp_value = $(this).val();

if (temp_value == "1") {
$(this).attr("selected", "selected");
}
});

原文地址:https://www.cnblogs.com/chenli0513/p/4810758.html