setattribute()方法
Posted Better_ZYQ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了setattribute()方法相关的知识,希望对你有一定的参考价值。
setAttribute就是给dom添加属性的。示例:比如有一个button
<input type=‘button‘ id=‘TestBtn‘ />
我想在想给这个button加一个属性,名叫name,那么我在js中可以这么把这个属性加到button上:
var btn=document.getElementById(‘TestBtn‘) //首先拿到button对象
btn. setAttribute(‘name‘,‘testName‘);//添加name属性,值为"testName";
=====>添加了以后,实际上这个button的html就变为了:<input type=‘button‘ id=‘TestBtn‘ name=‘testName‘/>
以上是关于setattribute()方法的主要内容,如果未能解决你的问题,请参考以下文章
.className = "highlight";.setAttribute("class", "highlight");