标签:style blog http java color 使用
$("p").append("Some appended text.");
$("p").prepend("Some prepended text.");
$("img").after("Some text after");
$("img").before("Some text before");
<!DOCTYPE html> <html> <head> <script src="jquery-1.11.1.js"></script> <script> $(document).ready(function(){ $("#btn1").click(function(){ $("#test1").prepend("<b>Before</b>"); }); $("#btn2").click(function(){ $("#test1").append("<i>After</i>"); }); $("#btn3").click(function(){ $("#test2").before("<b>Before</b>"); }); $("#btn4").click(function(){ $("#test2").after("<i>After</i>"); }); }); </script> </head> <body> <button id="btn1">在范特西前面加入文本</button> <button id="btn2">在范特西后面加入文本</button> <button id="btn3">在依旧范特西前面加入文本</button> <button id="btn4">在依旧范特西后面加入文本</button> <p id="test1">范特西</p> <p id="test2">依旧范特西</p> </body> </html>感觉贴图好麻烦。。。还是文字描写叙述吧。。。点完上述4个button后,效果:
Before范特西After
Before依旧范特西
After$("#div1").remove();
$("#div1").empty();
$("p").remove(".italic");这个地方我思考了一下,“删除 class="italic" 的全部 <p> 元素”和“删除 <p> 的全部 class="italic" 元素”是一样的。。。即:
$(".italic").remove("p");那么 empty() 方法也能够接受一个參数不?答案是否定的!
var txt2=$("<p></p>").text("Text."); // 以 jQuery 创建新元素为什么能够写成上述形式呢?不太清楚当中的规则。。。
var txt2=$("<p>Text.</p>"); // 以 jQuery 创建新元素
<!DOCTYPE html> <html> <head> <script src="jquery-1.11.1.js"></script> <script> $(document).ready(function(){ var txt1=$("<p>Text1</p>"); var txt2=$("<p></p>").text("Text2"); $("#btn1").click(function(){ $("p#text1").append(txt1); }); $("#btn1").click(function(){ $("p#text2").append(txt2); }); $("#btn2").click(function(){ $("p#text3").append($("<p>Text1</p>")); }); $("#btn2").click(function(){ $("p#text4").append($("<p></p>").text("Text2")); }); }); </script> </head> <body> <p id=text1>This is a paragraph.</p> <p id=text2>This is another paragraph.</p> <button id="btn1">仅仅能追加一次文本</button> <p id=text3>This is a paragraph.</p> <p id=text4>This is another paragraph.</p> <button id="btn2">每次都能追加文本</button> </body> </html>
JavaScript(20)jQuery HTML 加入和删除元素,布布扣,bubuko.com
JavaScript(20)jQuery HTML 加入和删除元素
标签:style blog http java color 使用
原文地址:http://www.cnblogs.com/blfshiye/p/3811028.html