Jquery替換節點元素
阿新 • • 發佈:2018-03-18
cti ima asc googl tle div type lac ogl
替換節點元素的操作,實現動態頁面的,代碼如下
<!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替換節點元素