jquery遍历select元素的二种方法(实例)
本文导语: 方法1,jquery遍历select的代码,利用$("# option").each(function() {形式来each遍历一次,所有的select均查询一次。 代码: 代码示例: $(document).ready(function(){ $("#selecttest").change(function() { // www. //alert("hello"); //alert($("#selecttest"...
方法1,jquery遍历select的代码,利用$("# option").each(function() {形式来each遍历一次,所有的select均查询一次。
代码:
$(document).ready(function(){
$("#selecttest").change(function()
{ // www.
//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");
});
});
aaass
11
22
33
44
55
66
方法2,jquery遍历select元素。
var reg_name = $("#").val();
$("# option").each(function() {
if ($(this).text() == reg_name) {
$(this).attr("selected", "selected");
break;
}
});
}