Element.setAttribute() - Web API 接口参考 编辑
设置指定元素上的某个属性值。如果属性已经存在,则更新该值;否则,使用指定的名称和值添加一个新的属性。
要获取某个属性当前的值,可使用 {{domxref("Element.getAttribute", "getAttribute()")}};要删除某个属性,可使用 {{domxref("Element.removeAttribute", "removeAttribute()")}}。
语法
element.setAttribute(name, value);
参数
name
- 表示属性名称的字符串。A {{domxref("DOMString")}} specifying the name of the attribute whose value is to be set. The attribute name is automatically converted to all lower-case when
setAttribute()
is called on an HTML element in an HTML document. value
- 属性的值/新值。A {{domxref("DOMString")}} 包含了分配给这个属性的值. 任何非字符串的值都会被自动转换为字符串.
当在 HTML 文档中的 HTML 元素上调用 setAttribute()
方法时,该方法会将其属性名称(attribute name)参数小写化。
如果指定的属性已经存在,则其值变为传递的值。如果不存在,则创建指定的属性。
尽管对于不存在的属性,getAttribute()
返回 null
,你还是应该使用 removeAttribute()
代替 elt.setAttribute(attr, null)
来删除属性。
布尔属性(原文是Boolean attributes)只要出现在元素上就会被认为是 true
,无论它的值是什么; 一般来说, 你应该将 value
设置为空字符串 (""
) 。(一些人使用这个属性的名称作为值; 这不会出现什么问题,但这是不规范的). See the {{anch("Example", "example")}} below for a practical demonstration.
由于将指定的值转换为字符串,因此指定null不一定能达到您的期望。 而不是删除属性或将其值设置为{{jsxref(“ null”)}},而是将属性的值设置为字符串“ null”。 如果要删除属性,请调用{{domxref(“ Element.removeAttribute”,“ removeAttribute()”)}}}。
返回值
{{jsxref("undefined")}}
例外
无效字符错误
- 指定的属性名称包含一个或多个在属性名称中无效的字符。
例子
在下面的例子中,setAttribute()
被用于设置 {{HTMLElement("button")}} 上的属性。
HTML
<button>Hello World</button>
JavaScript
var b = document.querySelector("button");
b.setAttribute("name", "helloButton");
b.setAttribute("disabled", "");
这说明了两件事:
- 上面对setAttribute()的第一次调用显示了将name属性的值更改为“ helloButton”。 您可以使用浏览器的页面检查器(Chrome,Edge,Firefox,Safari)查看此内容。
- 要设置布尔属性的值(例如禁用),可以指定任何值。 建议使用空字符串或属性名称。 重要的是,如果根本不存在该属性,则不管其实际值如何,都将其值视为真实。 该属性的缺失表示其值是false。 通过将Disabled属性的值设置为空字符串(“”),我们将disable设置为true,这将导致按钮被禁用。
{{ EmbedLiveSample('Example', '300', '50') }}
{{DOMAttributeMethods}}
规范
浏览器兼容性
此页面上的兼容性表是根据结构化数据生成的。 如果您想提供数据,请查看https://github.com/mdn/browser-compat-data并向我们发送请求请求。{{Compat("api.Element.setAttribute")}}
Gecko 备注
使用 setAttribute()
修改某些属性值时,尤其是 XUL 中的 value
,可能得不到期望结果。这是由于 attribute
指定的是默认值。要访问或修改当前值,应该使用 property
属性。例如,使用 Element.value
代替 Element.setAttribute()
。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论