这篇文章主要介绍了jquery中each方法使用及常用选择器都有哪些,需要的朋友,可以参考下
<head> <title></title> <script src="https://www.jb51.net/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>11111</div> <div>2222</div> <div>33333</div> </body>
常用选择器:
1.类:$(".error").
2.id:$("#daLong").
3.标签:$("div").
4.属性:$("div[name=apple]").
5.表单:$("input:checked").
您可能感兴趣的文章:
相关文章
最新评论
站长推荐 正版Windows 10 家庭/专业版,操作系统限时抢购[¥1088→¥248] 站长推荐 Microsoft Office 2016/2019/365 正版最低价仅需[ ¥148元]
大家感兴趣的内容
最近更新的内容
常用在线小工具