码迷,mamicode.com
首页 > Web开发 > 详细

“jquery中each方法和选择器”的学习笔记

时间:2014-07-08 11:02:36      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:jquery

<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方法和选择器”的学习笔记,布布扣,bubuko.com

“jquery中each方法和选择器”的学习笔记

标签:jquery

原文地址:http://blog.csdn.net/xyl295528322/article/details/37547983

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!