Home > Web Front-end > JS Tutorial > body text

Detailed explanation of the steps to replace node elements with jQuery

php中世界最好的语言
Release: 2018-05-10 11:44:22
Original
2196 people have browsed it

This time I will bring you a detailed explanation of the steps for replacing node elements with jQuery. What are the precautions for replacing node elements with jQuery? The following is a practical case, let’s take a look.

Replace the operation of node elements to achieve dynamic pages. 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='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>
Copy after login

The effect diagram is as follows:

##                            nel down through through the page.

##                      

I believe you have mastered the method after reading the case in this article, please come for more exciting information Pay attention to other related articles on php Chinese website!

Recommended reading:

How to load images in p5.js


vue-cli webpack creates project error reporting

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template