本文共 516 字,大约阅读时间需要 1 分钟。
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <script src="../js/jquery-3.5.1.js"></script> <script> $(function () { //插入节点 //append //$(A).prepend(B),往A内部的末尾处插入B $("#btn1").click(function () { var $strong = "<strong>jQuery教程</strong>"; $("p").append($strong); }); }); </script></head><body> <p>虾米大王</p> <input type="button" id="btn1" value="插入"></body></html>
转载地址:http://keem.baihongyu.com/