当前位置: 编程技术>WEB前端
jquery遍历select元素(实例讲解)
来源: 互联网 发布时间:2014-08-25
本文导语: 本篇文章提供一款jquery遍历select教程代码,主要是利用了$("# option").each(function() {形式来each遍历一次,这样所有的select就给查询了一次。 代码如下:$(document).ready(function(){$("#selecttest").change(function(){ //alert("hello"); ...
本篇文章提供一款jquery遍历select教程代码,主要是利用了$("# option").each(function() {形式来each遍历一次,这样所有的select就给查询了一次。
代码如下:
$(document).ready(function(){
$("#selecttest").change(function()
{
//alert("hello");
//alert($("#selecttest").attr("name"));
//$("a").attr("href","/blog_article/xx.html");
//window.location.href="/blog_article/xx.html";
//alert($("#selecttest").val());
alert($("#selecttest option[@selected]").text());
$("#selecttest").attr("value", "2");
});
});
11
22
33
44
55
66
方法二
function autoscrollregion() {
var reg_name = $("#").val();
$("# option").each(function() {
if ($(this).text() == reg_name) {
$(this).attr("selected", "selected");
break;
}
});
}