// 设置选中项
function setSelected(value) {
if (value) {
$("select").children("option").each(function () {
var temp_value = $(this).val();
$(this).removeAttr("selected");
if (temp_value === value) {
$(this).attr("selected", "selected");
}
});
}
}