手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jquery遍历select元素(实例讲解)
jquery遍历select元素(实例讲解)
摘要:本篇文章提供一款jquery遍历select教程代码,主要是利用了$("#option").each(function(){形式来each遍...

本篇文章提供一款jquery遍历select教程代码,主要是利用了$("#<%=ddl_xreg_id.clientid%> option").each(function() {形式来each遍历一次,这样所有的select就给查询了一次。

复制代码 代码如下:

<script src="jquery-1.2.1.js" type="text/网页特效"></script>

<script language="javascript" type="text/javascript">

$(document).ready(function(){

$("#selecttest").change(function()

{

//alert("hello");

//alert($("#selecttest").attr("name"));

//$("a").attr("href","xx.html");

//window.location.href="xx.html";

//alert($("#selecttest").val());

alert($("#selecttest option[@selected]").text());

$("#selecttest").attr("value", "2");

});

});

</script>

<a href="#">aaass</a>

<>

<select id="selecttest" name="selecttest">

<option value="1">11</option>

<option value="2">22</option>

<option value="3">33</option>

<option value="4">44</option>

<option value="5">55</option>

<option value="6">66</option>

</select>

方法二

function autoscrollregion() {

var reg_name = $("#<%=txt_reg_name.clientid%>").val();

$("#<%=ddl_xreg_id.clientid%> option").each(function() {

if ($(this).text() == reg_name) {

$(this).attr("selected", "selected");

break;

}

});

}

【jquery遍历select元素(实例讲解)】相关文章:

js事件监听器用法实例详解

javascript动态创建表格及添加数据实例详解

如何遍历对象的属性?

JQuery中DOM事件冒泡实例分析

JQuery中节点遍历方法实例

javascript函数特点实例

js实现简单锁屏功能实例

jQuery聚合函数实例

JQuery中层次选择器用法实例详解

Jquery使用css方法改变样式实例

精品推荐
分类导航