查
查看元素节点
document代表整个文档
document. getElementById()元素id在ie8以下的浏览器,不区分id大小写,而且也返回匹配name属性的元素。
document. getElementsByTagName()标签名。
document. getElementsByName()需要注意只有部分标签name可生效(表单,表单元素,img,iframe)
document. getElementByClassName()类名。IE8和IE8以下的IE版本中没有,可以多个class一起。
document. querySelector() css选择器在IE7和IE7以下的版本中没有。
document. QuerySelectorAll()同上。
网友评论