jquery遍历select元素(实例讲解)
本篇文章提供一款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;
}
});
}
相关文章
JS遮罩层效果 兼容ie firefox jQuery遮罩层
史上最精简,最强大的JS遮罩层效果,支持ie firefox jQuery遮罩层2010-07-07快速学习jQuery插件 jquery.validate.js表单验证插件使用方法
快速学习jQuery插件中的jquery.validate.js表单验证插件使用方法,Validation是历史最悠久的jQuery插件之一,经过了全球范围内不同项目的验证,并得到了许多Web开发者的好评,感兴趣的小伙伴们可以参考一下2015-12-12关于用Jquery的height()、width()计算动态插入的IMG标签的宽高的问题
关于用Jquery的height()、width()计算动态插入的IMG标签的宽高的问题的解决方法,需要的朋友可以参考下。2010-12-12
最新评论