jQuery ผนวก ()วิธีการ

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

ตัวอย่าง

แทรกเนื้อหาที่ส่วนท้ายขององค์ประกอบ <p> ทั้งหมด:

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

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

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

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


ไวยากรณ์

$(selector).append(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

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


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


การใช้ฟังก์ชันเพื่อแทรกเนื้อหาที่ส่วนท้ายขององค์ประกอบที่เลือก


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