“jquery于each方法和选择”学习笔记

<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").

版权声明:本文博主原创文章,博客,未经同意不得转载。

原文地址:https://www.cnblogs.com/zfyouxi/p/4821824.html