概述
<head> <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> </head> <body> <div id="testDom">11111</div> <div>2222</div> <div>33333</div> </body>
常用选择器:
1.类:$(".error").
2.id:$("#daLong").
3.标签:$("div").
4.属性:$("div[name=apple]").
5.表单:$("input:checked").
最后
以上就是爱笑镜子为你收集整理的jquery中each方法示例和常用选择器的全部内容,希望文章能够帮你解决jquery中each方法示例和常用选择器所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复