HTML DOM removeAttribute() 方法
實(shí)例
刪除頭部元素的 style 屬性:
document.getElementsByTagName("H1")[0].removeAttribute("style");
刪除屬性前:
Hello World
刪除屬性后:
Hello World
嘗試一下 ?
定義和用法
removeAttribute() 方法刪除指定的屬性
查看類似方法 removeAttributeNode() 。
瀏覽器支持
所有主要瀏覽器都支持 removeAttribute() 方法
語(yǔ)法
element.removeAttribute(attributename)
參數(shù)s
參數(shù) | 類型 | 描述 |
---|---|---|
attributename | String | 必需。規(guī)定要?jiǎng)h除的屬性的名稱。 |
返回值
沒(méi)有返回值。
技術(shù)細(xì)節(jié)
DOM 版本 | Core Level 1 Element Object |
---|
更多建議: