Jquery替换节点元素

Posted abernhong

tags:

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

替换节点元素的操作,实现动态页面的,代码如下

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>中国</title>
    <script type="text/javascript" src="../jquery-3.3.1/jquery-3.3.1.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $("button#button-replaceWith").click(function () {
                $("p").replaceWith("<strong>您好!我最喜欢的IT公司是:</strong>");
                $("[name=‘name-replace‘]").replaceWith("<tr><td>name-replace</td><td>name-replace</td><td>name-replace</td></tr><tr><td>name-replace</td><td>name-replace</td><td>name-replace</td></tr>");
            });
        });

    </script>
</head>
<body>
    <h2>超实用的jquery代码段-jquery插入节点元素的方法</h2>
    <p>您好!您最喜欢的IT公司是:</p>
    <ul>
        <li title="Google">Google</li>
        <li title="Apple">Apple</li>
        <li title="Microsoft">Microsoft</li>
    </ul>
    <table name="name-replace">

    </table>
    <button id="button-replaceWith">替换节点元素</button>
</body>
</html>

效果图如下:

技术分享图片

 

              如图(1)

 技术分享图片

              如图(2)

技术分享图片

 

以上是关于Jquery替换节点元素的主要内容,如果未能解决你的问题,请参考以下文章

DOM节点的复制和替换(jQuery)

jQuery-2.DOM---节点的复制与替换

jQuery-DOM操作之复制替换包裹节点

jQuery的节点添加删除替换等操作

js怎样添加、移除、移动、复制、创建和查找节点?

JavaScript课程——Day21(jQuery下class操作css操作元素宽高元素的位置滚动条创建.添加.替换.删除.克隆节点事件滑上事件的区别)