jQuery - ?? ??/??
jQuery - ?? ??
jQuery? ???? ? ??/???? ?? ??? ? ????.
? HTML ??? ??
? ???? ???? ? ?? jQuery ???? ?????.
append() - ??? ??? ?? ??? ??
prepend() - ??? ??? ?? ??? ?? ???
after () - ??? ?? ?? ?? ??
before() - ??? ?? ?? ?? ??
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> function appendText(){ var txt1="<p>10月27日。</p>"; // 使用 HTML 標(biāo)簽創(chuàng)建文本 var txt2=$("<p></p>").text("星期四。"); // 使用 jQuery 創(chuàng)建文本 var txt3=document.createElement("p"); txt3.innerHTML="小雨。"; // 使用 DOM 創(chuàng)建文本 text with DOM $("body").append(txt1,txt2,txt3); // 追加新元素 } </script> </head> <body> <p>這是一個段落。</p> <button onclick="appendText()">追加文本</button> </body> </html>
jQuery - ?? ??
jQuery? ???? ?? ?? HTML ??? ?? ??? ? ????.
??/??? ??
??? ???? ???? ?? ?? ????? ?? ? ?? jQuery ???? ??? ? ????.
remove() - ??? ??(? ?? ?? ??) ?? ?? ??() - ???? ?? ??? ?? ?? ??
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").remove(); }); }); </script> </head> <body> <div id="div1" style="height:100px;width:300px;border:1px solid black;background-color:yellow;"> 這些是示例 <p>這些是示例</p> <p>這些是示例</p> </div> <br> <button>移除示例</button> </body> </html>
? ? ?? ??? ???? ???? ??????.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ $("#div1").empty(); }); }); </script> </head> <body> <div id="div1" style="height:100px;width:300px;border:1px solid black;background-color:yellow;"> 這些是示例。 <p>這些是示例。</p> <p>這些是示例。</p> </div> <br> <button>清空示例</button> </body> </html>