HTML DOM createAttribute() 方法
實例
創(chuàng)建 class 屬性, 屬性值為 "democlass", 并將clas屬性添加到H1 元素中:
var att=document.createAttribute("class");
att.value="democlass";
document.getElementsByTagName("H1")[0].setAttributeNode(att);
att.value="democlass";
document.getElementsByTagName("H1")[0].setAttributeNode(att);
元素添加屬性前:
Hello World
元素添加屬性后:
Hello World
嘗試一下 ?
定義和用法
createAttribute()方法用于創(chuàng)建一個指定名稱的屬性,并返回Attr 對象屬性。
瀏覽器支持
所有主要瀏覽器都支持 createAttribute() 方法
語法
document.createAttribute(attributename)
參數(shù)
參數(shù) | 類型 | 描述 |
---|---|---|
attributename | Attr object | 必須。要創(chuàng)建的屬性名稱。 |
返回值
類型 | 描述 |
---|---|
節(jié)點對象 | 創(chuàng)建的屬性 |
技術(shù)細(xì)節(jié)
DOM 版本 | Core Level 1 Document 對象 |
---|
更多建議: