Heim > Artikel > Web-Frontend > jquery遍历select元素(实例讲解)_jquery
本篇文章提供一款jquery遍历select教程代码,主要是利用了$("# option").each(function() {形式来each遍历一次,这样所有的select就给查询了一次。
方法二
function autoscrollregion() {
var reg_name = $("#").val();
$("# option").each(function() {
if ($(this).text() == reg_name) {
$(this).attr("selected", "selected");
break;
}
});
}