首页 > 代码库 > document对象
document对象
一.找元素
①getElementById()根据ID找。
②getElementsByClassName()根据class找,返回数组。
③getElementsByTagName()根据标签名找,返回数组。
二.操作内容
1.普通元素。包括①innerText获取内容文本。②innerHTML获取内容代码。
2.表单元素。value
var a = document.getElementById("txt");
alert(a.value);
a.value = "http://www.mamicode.com/ok";
三.操作属性
①setAttribute(属性名,属性值)设置属性
a.setAttribute("checked","checked");
②removeAttribute(属性名)移除属性
a.removeAttribute("checked");
③getAttribute(属性名)获取属性
alert(a.getAttribute("test"));
四.操作样式
a.style.width获取样式
操作样式
var a = document.getElementById("d");
1.获取样式,只能获取内嵌的
alert(a.style.width);
2.设置样式
a.style.fontSize = "30px";
3.修改样式
a.style.backgroundColor = "green";
a.style.color="white";
document对象
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。