Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM แทรกAdjacentHTML( ) วิธีการ


เมธอด HTML DOM insertAdjacentHTML() จะแทรกสตริงข้อความเป็น HTML ในตำแหน่งที่ระบุ

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

การเรียก insertAdjacentHTML() พร้อมพารามิเตอร์ของ positionString และโค้ด HTML

node.insertAdjacentHTML(“positionString”, “htmlString”)

สตริงตำแหน่ง

ที่นี่ positionString สามารถเป็นดังต่อไปนี้ -

positionString คำอธิบาย
afterbegin มันแทรก htmlString หลังจุดเริ่มต้นขององค์ประกอบโหนด
หลังจบ มันแทรก htmlString หลังองค์ประกอบโหนด
ก่อนเริ่ม มันแทรก htmlString ก่อนองค์ประกอบโหนด
ก่อน มันแทรก htmlString ก่อนจุดสิ้นสุดขององค์ประกอบโหนด

สตริง HTML

และ “htmlString” อาจเป็นดังต่อไปนี้ −

positionString
ช่วงใหม่ หรือ

นี่คือย่อหน้าใหม่


หรือโค้ด html อื่นๆ ที่ถูกต้อง

ตัวอย่าง

ให้เราดูตัวอย่างสำหรับ InsertAdjacentHTML() วิธีการ −

<!DOCTYPE html>
<html>
<head>
<title>insertAdjacentHTML()</title>
<style>
   form {
      width:70%;
      margin: 0 auto;
      text-align: center;
   }
   * {
      padding: 2px;
      margin:5px;
   }
   input[type="button"] {
      border-radius: 10px;
   }
</style>
</head>
<body>
<form>
<fieldset>
<legend>insertAdjacentHTML( )</legend>
<h1>Family Tree</h1>
<span id="GrandFather">Grand Father --></span>
<span id="Father">Father --></span>
<span id="Myself">Myself</span>
<input type="button" onclick="rectifyTree()" value="Son is born">
</fieldset>
</form>
<script>
   function rectifyTree() {
      var MSpan = document.getElementById("Myself");
      MSpan.insertAdjacentHTML("afterend", "<span id='Son'>-->Son</span>");
   }
</script>
</body>
</html>

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

ก่อนคลิก ‘ลูกชายเกิด ปุ่ม −

HTML DOM แทรกAdjacentHTML( ) วิธีการ

หลังจากคลิก ‘ลูกชายเกิด ปุ่ม −

HTML DOM แทรกAdjacentHTML( ) วิธีการ