$(A).replaceWith(B)
$(A).replaceWith(B) 表示用 B 來替換 A。<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <script src="js/jquery-1.12.4.min.js"></script> <script> $(function () { $("#btn").click(function () { $("strong").replaceWith('<a href="http://c.biancheng.net/" target="_blank">c語言中文網</a>'); }); }) </script> </head> <body> <strong>jQuery教學</strong><br/> <input id="btn" type="button" value="替換" /> </body> </html>預設情況下,預覽效果如圖 1 所示。