欢迎访问服务器技术网-www.fuwuqijishu.com

HTML DOM createAttribute() 方法

JavaScript fuwuqijishu 2年前 (2022-09-04) 147次浏览 0个评论 扫描二维码
文章目录[隐藏]

HTML DOM createAttribute() 方法

Document 对象

实例

创建 class 属性, 属性值为 “democlass”, 并将clas属性添加到
H1 元素中:

var att=document.createAttribute(“class”);
att.value=”democlass”;
document.getElementsByTagName(“H1”)[0].setAttributeNode(att);

元素添加属性前:

Hello World

元素添加属性后:

Hello World


定义和用法

createAttribute()方法用于创建一个指定名称的属性,并返回Attr 对象属性。


浏览器支持

所有主要浏览器都支持 createAttribute() 方法


语法

document.createAttribute(attributename)

参数

参数 类型 描述
attributename Attr object 必须。要创建的属性名称。

返回值

类型 描述
节点对象 创建的属性

技术细节

DOM 版本 Core Level 1 Document 对象


Document 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2311.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900