jquery的each函数的用法

Posted Mr_伍先生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery的each函数的用法相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>each和 map函数的使用案例</title>
    <script src="jquery-1.11.3.min.js"></script>
    <script>
    
        jQuery(document).ready(function($) {
            // $("li").each(function(index, el) {

            //     var originTxt = $(el).text();

            //     $(el).text(originTxt + index);
            // });

            $.each($("li"), function(i, e) {
                var originTxt = $(e).text();

                $(e).text(originTxt + i+1);

            });

            //map函数: 会把所有的
            // 全局的map 函数 参数 跟 jQuery对象的参数是反的。
            var temp = $.map($("li"), function(elme, index) {
                return index;
            });

            var temp2 = $("li").map(function(i, e){
                console.log(i);
                return i;
            });

        });

    </script>

</head>
<body>
    <ul>
        <li>大好时光</li>
        <li>大好时光</li>
        <li>大好时光</li>
        <li>大好时光</li>
    </ul>
</body>
</html>

 

以上是关于jquery的each函数的用法的主要内容,如果未能解决你的问题,请参考以下文章

学亮IT手记jQuery each()函数用法实例

jQuery $.each用法[转]

jQuery $.each用法

jQuery $.each用法

如何跳出当前jquery.each()函数循环

关于jquery的$each((Object, function(p1, p2)用法