jQuery นำหน้า ()วิธีการ

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

ตัวอย่าง

แทรกเนื้อหาที่จุดเริ่มต้นของทุก <p> องค์ประกอบ:

$("button").click(function(){
  $("p").prepend("<b>Prepended text</b>");
});

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

prepend() วิธีการแทรกเนื้อหาที่ระบุที่จุดเริ่มต้นขององค์ประกอบที่เลือก

เคล็ดลับ:ในการแทรกเนื้อหาที่ส่วนท้ายขององค์ประกอบที่เลือก ให้ใช้ append()วิธีการ


ไวยากรณ์

$(selector).prepend(content,function(index,html))

Parameter Description
content Required. Specifies the content to insert (can contain HTML tags)

Possible values:

  • HTML elements
  • jQuery objects
  • DOM elements
function(index,html) Optional. Specifies a function that returns the content to insert
  • index - Returns the index position of the element in the set
  • html - Returns the current HTML of the selected element

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


แทรกเนื้อหาด้วยวิธี prepend()


การใช้ฟังก์ชันเพื่อแทรกเนื้อหาที่จุดเริ่มต้นขององค์ประกอบที่เลือก


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