document.createAttribute() - Web API 接口参考 编辑

Document.createAttribute() 方法创建并返回一个新的属性节点。这个对象创建一个实现了 Attr 接口的节点。这个方式下DOM不限制节点能够添加的属性种类。

语法

attribute = document.createAttribute(name)

参数

  • name ,属性的属性名。

返回值

一个 Attr 节点。

异常

  • INVALID_CHARACTER_ERR 如果参数含有非法的XML属性字符。

例子

var node = document.getElementById("div1");
var a = document.createAttribute("my_attrib");
a.value = "newVal";
node.setAttributeNode(a);
console.log(node.getAttribute("my_attrib")); // "newVal"

备注

该方法的返回值是一个类型为 Attr 的节点。你可以通过为该节点的 nodeValue 属性赋值来设置该属性节点的属性值,也可以使用常用的 setAttribute() 方法来替代该方法.

规范

SpecificationStatusComment
DOM
Document.createAttribute()
Living Standard大写字符的精确表现。
Document Object Model (DOM) Level 3 Core Specification
Document.createAttribute()
Obsolete无变更。
Document Object Model (DOM) Level 2 Core Specification
Document.createAttribute()
Obsolete无变更。
Document Object Model (DOM) Level 1 Specification
Document.createAttribute()
Obsolete初始定义。

浏览器兼容性

BCD tables only load in the browser

这个页面的兼容性表是从格式化数据生成的,如果你想贡献数据,请check out https://github.com/mdn/browser-compat-data修改后给我们发送pull请求。

参见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:117 次

字数:3691

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文