Home  >  Article  >  Web Front-end  >  How to replace node elements with jQuery

How to replace node elements with jQuery

亚连
亚连Original
2018-05-29 15:23:241617browse

This article explains the operation method of jquery to replace node elements and the implementation code of dynamic pages through example code. It is very good. Friends who need it can refer to it.

The operation of replacing node elements to achieve dynamic Page, the code is as follows

<!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=&#39;name-replace&#39;]").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>

The rendering is as follows:

##                                       

#                                          

The above is what I compiled for you, I hope it will be helpful to you in the future.

Related articles:

vue Sample code for developing a button component

##vue-cli scaffolding-configuration file under bulid

Simple tutorial on using less in vue2

The above is the detailed content of How to replace node elements with jQuery. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn