为了账号安全,请及时绑定邮箱和手机立即绑定

js中Dom元素及获取方法

标签:
JavaScript

DOM基础对象

document

document.documentElement  html部分

document.head 

document.title

document.body  body部分

获取元素对象方法

document.getElementById();  通过id找到对象

document.getElementsByTagName();  通过标签名找到对象并放到数组集合中

document.getElementsByName();  通过name找到对象并放到数组集合中

document.getElementsByClassName();  通过类选择器找到对象并放到数组集合中

document.querySelector();  查找选择器

直接获取dom元素对象集合(不常用部分)

document.links  链接集合

document.images  图片集合

document.forms  表单集合

document.anchors  锚点集合

tableObj.rows  表格行集合

tableRowObj.cells  表格列集合

selectObj.options  下拉选项集合

childNodes子节点

nodeType元素类型

if(oUl.childNodes[i].nodeType==1)元素节点

通过子标签寻找父元素

this.parentNode

父元素寻找子元素(这是一个集合)

this.children

用于获取元素的实际位置,本身是基于位置寻找父级

offsetParent

//首尾节点,左侧使用低级浏览器,右侧使用高级浏览器

firstChild  firstElementChild

lastChild  lastElementChild

nextSibling nextElementSilling

previousSibling previousElementSibling

//版本兼容问题

if(oUl.firstElementChild)

{...}





点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消