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


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


此createAttribute()方法用於創建具有指定名稱的屬性,並返回該屬性對象。 attribute.value屬性用於設置屬性和element的值。setAttribute()方法用於為元素創建新屬性。此method()包含創建的屬性的名稱作為參數值。

用法:

document.createAttribute( attributename )

例:


<!DOCTYPE html> 
<html> 
    <head> 
        <title>DOM createAttribute Method</title> 
        <style> 
            .gfg { 
                color:green; 
                font-weight:bold; 
                font-size:50px; 
            } 
            body { 
                text-align:center; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>DOM createAttribute() Method</h2> 
        <button onclick="geeks()">Submit</button> 
        <script> 
        function geeks() { 
            var tag_name = 
                document.getElementsByTagName("h1")[0]; 
            var attr =  
                document.createAttribute("class"); 
            attr.value = "gfg"; 
            tag_name.setAttributeNode(attr); 
        } 
        </script> 
    </body> 
</html>                    

輸出:

範例2:

<!DOCTYPE html> 
<html> 
    <head> 
        <style> 
            h1 { 
                color:green; 
            } 
            body { 
                text-align:center; 
            } 
        </style> 
    </head> 
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2>DOM createAttribute() Method</h2> 
        <a id="gfg">Visit GeeksForGeeks...</a><br><br> 
        <button onclick="geeks()">Submit</button> 
        <script> 
            function geeks() { 
                var id= document.getElementById("gfg"); 
                var new_attr = document.createAttribute("href"); 
                new_attr.value = "#"; 
                id.setAttributeNode(new_attr); 
            } 
        </script> 
    </body> 
</html>                    

輸出:

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

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


相關用法


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