HTML DOM createAttribute() 方法

2018-09-30 17:07 更新

HTML DOM createAttribute() 方法

Document 對象 參考手冊 Document 對象

實例

創(chuàng)建 class 屬性, 屬性值為 "democlass", 并將clas屬性添加到H1 元素中:

var att=document.createAttribute("class");
att.value="democlass";
document.getElementsByTagName("H1")[0].setAttributeNode(att);

元素添加屬性前:

Hello World

元素添加屬性后:

Hello World


嘗試一下 ?

定義和用法

createAttribute()方法用于創(chuàng)建一個指定名稱的屬性,并返回Attr 對象屬性。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 createAttribute() 方法


語法

document.createAttribute(attributename)

參數(shù)

參數(shù)類型描述
attributenameAttr object必須。要創(chuàng)建的屬性名稱。

返回值

類型描述
節(jié)點對象創(chuàng)建的屬性

技術(shù)細(xì)節(jié)

DOM 版本Core Level 1 Document 對象


Document 對象 參考手冊 Document 對象


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號