jQuery insertBefore()วิธี การ

❮ วิธีการ jQuery HTML/CSS

ตัวอย่าง

แทรก <span> องค์ประกอบก่อนแต่ละ <p> องค์ประกอบ:

$("button").click(function(){
  $("<span>Hello world!</span>").insertBefore("p");
});

ความหมายและการใช้งาน

เมธอด insertBefore() จะแทรกองค์ประกอบ HTML ก่อนองค์ประกอบที่เลือก

เคล็ดลับ:ในการแทรกองค์ประกอบ HTML หลังองค์ประกอบที่เลือก ให้ใช้ เมธอดinsertAfter()


ไวยากรณ์

$(content).insertBefore(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 before the selected elements.
selector Required. Specifies where to insert the content

ลองด้วยตัวคุณเอง - ตัวอย่าง


วิธีการใช้เมธอด insertBefore() เพื่อแทรกองค์ประกอบที่มีอยู่ก่อนแต่ละองค์ประกอบที่เลือก


❮ วิธีการ jQuery HTML/CSS