标签:
window.document
1,确认元素,
document.getElementById("id"); 根据id找元素
doucment.getElementsByName("name"); 根据name找,出来的数组
doucment.getElementsByTagName("name"); 根据标签找,找出来的是数组
doucment.getElementsByClassName("name"); 根据标clssname,找出来的是数组
2,获取、操作内容
var a= document.getElementById("ID");
非表单 a.innerHTML 获取内容
a.innerHTML="" 设置内容
表单 a.value 获取内容
a.value ="" 设置内容
3,操作属性
var a= document.getElementById("ID");
a.setAttribute(“属性名”,“属性值”); 设置一个 新的属性
a.getAttribute("属性名") 获取属性的值
a.removeAttribute ("属性名"); 移除一个属性
标签:
原文地址:http://www.cnblogs.com/999c/p/4298271.html