jQuery insertAfter( ) 方法

Posted 乱舞春秋__

tags:

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

通过jQuery的 insertAfter( ) 方法,我们可以在被选元素的后面插入 html 元素。

语法格式:

$(content).insertAfter(selector)

注意:插入的内容必须包含HTML标签。

示例:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script src="../jQuery/jQuery.js"></script>
    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $("<p>盒子的宽度为" + $("div").css("width") + "盒子的高度为" + $("div").css("height") + "</p>").insertAfter($("div"));
            })
        })
    </script>
    <style>
        div {
            width: 100px;
            height: 100px;
            background-color: rgba(12, 204, 115, 0.575);
        }
    </style>
</head>
<body>
    <button>按钮</button>
    <div></div>
</body>
</html>

点击按钮,在盒子后面插入一个显示盒子的宽和高的p元素,如图:

以上是关于jQuery insertAfter( ) 方法的主要内容,如果未能解决你的问题,请参考以下文章

jQuery学习—before方法after方法insertBefore方法insertAfter方法

jQuery 文档操作 - insertAfter() ,insertBefore() 方法

JavaScript jQuery insertAfter方法

jQuery 文档操作 - insertAfter() ,insertBefore(),after(),before() 方法

JavaScript实现JQuery的insertAfter功能

jQuery基础(DOM篇,append(),after(),prepend(),insertAfter(),节点删除,遍历方法each())