欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery替换节点元素的操作方法

程序员文章站 2023-11-28 18:20:40
替换节点元素的操作,实现动态页面的,代码如下

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

<!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>

效果图如下:

jQuery替换节点元素的操作方法

              如图(1)

jQuery替换节点元素的操作方法

              如图(2)

jQuery替换节点元素的操作方法

总结

以上所述是小编给大家介绍的jquery替换节点元素的操作方法,希望对大家有所帮助