jQuery replaceAll()เมธอด
ตัวอย่าง
แทนที่องค์ประกอบ <p> ทั้งหมดด้วย <h2> องค์ประกอบ:
$("button").click(function(){
$("<h2>Hello world!</h2>").replaceAll("p");
});
ความหมายและการใช้งาน
วิธีการreplaceAll() แทนที่องค์ประกอบที่เลือกด้วยองค์ประกอบ HTML ใหม่
ไวยากรณ์
$(content).replaceAll(selector)
Parameter | Description |
---|---|
content | Required. Specifies the content to insert (must contain HTML tags) |
selector | Required. Specifies which elements to be replaced |
ลองด้วยตัวคุณเอง - ตัวอย่าง
วิธีแทนที่ทุกองค์ประกอบ <p> ที่เป็นลูกคนสุดท้ายของแม่ด้วยองค์ประกอบ <span>