HTML DOM setAttribute() 方法
實(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è)置該值。
瀏覽器支持
所有主要瀏覽器都支持 setAttribute() 方法
Internet Explorer 8 及更早 IE 版本不支持該方法。
語(yǔ)法
element.setAttribute(attributename,attributevalue)
參數(shù)
參數(shù) | 類(lèi)型 | 描述 |
---|---|---|
attributename | String | 必須。你要添加的屬性名稱(chēng)。 |
attributevalue | String | 必須。你要添加的屬性值。 |
返回值
沒(méi)有返回值。
技術(shù)細(xì)節(jié)
DOM 版本 | Core Level 1 Element Object |
---|
更多建議: