當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML DOM insertBefore()用法及代碼示例


HTML DOM中的insertBefore()方法用於在用戶指定的現有節點之前插入新節點。

用法:

node.insertBefore( newnode, existingnode )

參數:此方法接受上述和以下所述的兩個參數:


  • newnode:它是必需的參數。此參數包含需要插入的新節點對象。
  • existingnode:它是必需的參數。它描述了新節點在該節點之前插入的位置。如果將其設置為null,則insertBefore方法將在末尾插入新節點。

返回值:它返回代表插入節點的節點對象。

例:在此示例中,在列表的第二個節點之前插入一個列表元素。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM insertBefore() Method 
  
    </title> 
    <!--Script to insert a new node before existing node-->
    <script> 
        function myGeeks() { 
            var newItem = document.createElement("li"); 
            var textnode = document.createTextNode("Java"); 
            newItem.appendChild(textnode); 
  
            var list = document.getElementById("subjects"); 
            list.insertBefore(newItem, list.childNodes[2]); 
        } 
    </script> 
</head> 
  
<body> 
    <h1> 
        Welcome To GeeksforGeeks 
    </h1> 
  
    <h2> 
        HTML DOM insertBefore() Method 
    </h2> 
  
    <ul id="subjects"> 
        <li>C++</li> 
        <li>Python</li> 
    </ul> 
  
    <p> 
        Click on the button to insert an  
        element before Python 
    </p> 
  
    <button onclick="myGeeks()"> 
        Insert Node 
    </button> 
  
</body> 
  
</html>

輸出:
之前單擊按鈕:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM insertBefore()方法支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


注:本文由純淨天空篩選整理自ProgrammerAnvesh大神的英文原創作品 HTML | DOM insertBefore() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。