HTML DOM setAttribute() 方法

示例:

[pcsh lang="js" tab_size="4" message="" hl_lines="" provider="manual"]

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

[/pcsh]

setAttribute() 方法添加指定的属性,并为其赋指定的值。

如果这个指定的属性已存在,则仅设置/更改值。

参数

参数 类型 描述
attributename String 必需。您希望添加的属性的名称。
attributevalue String 必需。您希望添加的属性值。

 

此处评论已关闭