AI编程助手
AI免费问答

jquery中each方法示例和常用选择器_jquery

  2016-05-16 16:42   1425浏览 原创
  
<title></title><script src="jquery-1.4.2.js" type="text/javascript"></script><script type="text/javascript"> 

$(function() { 
//alert($("div").text()); 
//对数组元素使用匿名函数进行逐个处理。 
$("div").each(function(key, value) { 
//alert(key+value); 
// alert($(value).text()); 
alert(this.innerHTML); 
}); 
//this表示当前遍历的dom元素 
$("div").each(function() { 
alert($(this).text()); 
}); 
}); 
</script><div id="testDom">11111</div> 
<div>2222</div> 
<div>33333</div> 

常用选择器:

1.类:$(".error").
2.id:$("#daLong").
3.标签:$("div").
4.属性:$("div[name=apple]").
5.表单:$("input:checked").

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。