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>
jquery在一个元素后追加标签
<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;
}
});
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论