- (略加修改和完善)
- 主要是利用了 $("#<%=ddl_xreg_id.clientid%> option").each(function() {} 形式来遍历。
-
- <!--下拉框-->
- <select id="selecttest" name="selecttest">
- <option value="1">11</option>
- <option value="2">22</option>
- <option value="3">33</option>
- </select>
- 方法:
- function autoscrollregion() {
- var reg_name = $("#<%=txt_reg_name.clientid%>").val();
- $("#selecttest option").each(function() {
- if ($(this).text() == reg_name) {
- $(this).attr("selected", "true");
- return false;
- }
- });
- }
jquery遍历select元素
最新推荐文章于 2021-07-01 13:39:16 发布