jQuery prependTo()เมธอด
ตัวอย่าง
แทรก <span> องค์ประกอบที่จุดเริ่มต้นของแต่ละ <p> องค์ประกอบ:
$("button").click(function(){
$("<span>Hello World!</span>").prependTo("p");
});
ความหมายและการใช้งาน
prependTo() วิธีการแทรกองค์ประกอบ HTML ที่จุดเริ่มต้นขององค์ประกอบที่เลือก
เคล็ดลับ:ในการแทรกองค์ประกอบ HTML ที่ส่วนท้ายขององค์ประกอบที่เลือก ให้ใช้ appendTo()วิธีการ
ไวยากรณ์
$(content).prependTo(selector)
Parameter | Description |
---|---|
content | Required. Specifies the content to insert (must contain HTML tags). Note: If content is an existing element, it will be moved from its current position, and inserted at the beginning of the selected elements. |
selector | Required. Specifies on which elements to prepend the content to |
ลองด้วยตัวคุณเอง - ตัวอย่าง
วิธีการใช้ prependTo() วิธีการแทรกองค์ประกอบที่มีอยู่ที่จุดเริ่มต้นของแต่ละองค์ประกอบที่เลือก