DOM Element setAttribute() 方法

2018-12-02 14:27 更新

HTML DOM setAttribute() 方法

元素對(duì)象參考手冊(cè) 元素對(duì)象

實(shí)例

設(shè)置 input元素的的屬性類(lèi)型:

document.getElementsByTagName("INPUT")[0].setAttribute("type","button");

設(shè)置屬性前:

<input value="OK">

設(shè)置屬性后:

<input value="OK" type="button">

嘗試一下 ?

定義和用法

setAttribute() 方法創(chuàng)建或改變某個(gè)新屬性。

如果指定屬性已經(jīng)存在,則只設(shè)置該值。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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

Internet Explorer 8 及更早 IE 版本不支持該方法。


語(yǔ)法

element.setAttribute(attributename,attributevalue)

參數(shù)

參數(shù)類(lèi)型描述
attributenameString必須。你要添加的屬性名稱(chēng)。
attributevalueString必須。你要添加的屬性值。

返回值

沒(méi)有返回值。

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

DOM 版本Core Level 1 Element Object


元素對(duì)象參考手冊(cè) 元素對(duì)象

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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)