很多朋友对于text()、html() 以及 val() 的回调函数不是很理解,写了一段代码希望对大家有帮助。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
</head>

<body>

    <style>
        .ba {
            width: 200px;
            height: 200px;
            background-color: blue;
            position: absolute;
        }
    </style>


    <div class="demo">
        <p><a href="#">我在第一个P里面</a></p>
        <p><a href="#">W3CPLUS</a></p>
    </div>
    <button id="bu1">an</button>

    <script>
        $(function() {
            $(function() {
                $('#bu1').click(function() {
                    $('p').html(function(index, obhtml) {
                        return '序号' + (index + 1) + ':' + obhtml;
                    })
                })
            })
        })
    </script>
</body>

</html>

发表评论

邮箱地址不会被公开。