【JavaScript】纯js实现元素属性的添加、获取、移除

通过ID或者元素先获取DOM对象

var thisDom=document.getElementById('id');


  • 添加属性    :thisDom.setAttribute('name','value');

  • 获取属性值:thisDom.getAttribute('name');

  • 删除属性    :thisDom.removeAttribute('name');

猿教程
请先登录后发表评论
  • 最新评论
  • 总共0条评论