当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM setAttributeNode()用法及代码示例


DOM setAttributeNode() 方法将其参数中指定的属性设置为 HTML 文档中的指定元素,并将该值作为 Attr 节点对象返回。

用法

以下是语法 -

node.setAttributeNode(attributeNode);

示例

让我们看一个 setAttributeNode() 方法的例子 -

<!DOCTYPE html>
<html>
<head>
<style>
   html{
      height:100%;
   }
   body{
      text-align:center;
      color:#fff;
      background:linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat;
      height:100%;
   }
   .btn{
      background:#0197F6;
      border:none;
      height:2rem;
      border-radius:2px;
      width:35%;
      margin:2rem auto;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
</style>
</head>
<body>
<h1>DOM setAttributeNode() method Demo</h1>
<p>Hi! I'm a para element in HTML with some random text</p>
<button onclick="set()" class="btn">Set Attribute</button>
<script>
   function set() {
      var p=document.querySelector("p");
      var attr=document.createAttribute("style");
      attr.value="color:#db133a;font-size:1.2rem;";
      p.setAttributeNode(attr);
   }
</script>
</body>
</html>

输出

这将产生以下输出 -

点击 ”Set Attribute” 按钮来设置 <p> 元素的样式属性。

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM setAttributeNode() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。