jQuery ผนวก ()วิธีการ
ตัวอย่าง
แทรกเนื้อหาที่ส่วนท้ายขององค์ประกอบ <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:
|
function(index,html) | Optional. Specifies a function that returns the content to insert
|
ลองด้วยตัวคุณเอง - ตัวอย่าง
แทรกเนื้อหาด้วยวิธีการ append()
การใช้ฟังก์ชันเพื่อแทรกเนื้อหาที่ส่วนท้ายขององค์ประกอบที่เลือก