1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
| <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>jq中的DOM操作</title> </head> <body> <div class="root"></div> <div id="box"></div> <button id="btn1">按钮1</button> <button id="btn2">按钮2</button> </body> </html> <script src="js/jquery-3.5.1.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript"> var p = document.createElement("p");
$(".root").append($(p)); $(".root").append("<h1>这是大标题!</h1>"); var a = document.createElement("a"); a.href = "http://www.baidu.com"; $(a).appendTo($(".root")); $("body").prepend("<p>这是新增的p标签!!!</p>") $("<span>普通的span标签</span>").prependTo($("body")); $("div").after("<h1>在div后面的大标题</h1>") $("div").before("<em>这是倾斜标签</em>");
$("#btn1").click(function(){ alert("按钮1被点击啦!!!"); }) $("#btn2").click(function(){ alert("按钮2被点击啦!2222"); }) var btn1 = $("#btn1").remove(); $("body").append(btn1); var btn2 = $("#btn2").detach(); $("body").append(btn2); </script>
|