JS-element(元素对象)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS-element(元素对象)相关的知识,希望对你有一定的参考价值。
要想使用element对象,首先要获得element对象,可采用document里的方法获得元素对象
*获取element对象
var input=document.getElementById("要获取元素的ID");
*获取属性里面的值
alert(input.value); 常用
alert(input.getAttribute("value")); 可获取属性名称为关键字的属性值,如class
*设置属性的值
input.setAttribute("属性名","属性值");
*设置属性的值
input.removeAttribute("属性名");
以上是关于JS-element(元素对象)的主要内容,如果未能解决你的问题,请参考以下文章