码迷,mamicode.com
首页 > 其他好文 > 详细

Day6--------DOM nodes

时间:2014-11-25 20:26:32      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:des   style   io   ar   使用   sp   文件   on   div   

DOM:Document Object Model(文件对象模型)

childNodes---------子节点 

IE:childNodes.length是实际具有的子节点个数

FF:其包含了空文本作为的节点,可以使用noteType属性,其中1:元素节点  3:文本节点

children:兼容版子节点

parentNode-----------父节点

offsetParent----------实际定位上的父节点

IE:firstChild/lastChild-----首节点/末节点

FF:firstElementChild/lastElementChild

IE:nextSibling/previousSibling------兄弟节点

FF:nextElementSibling/previousElementSibling

oDiv.style.width="block";==oDiv.style["width"]="block";

setAttribute("oDiv.style.width","block");设置元素值

getAttribute("oDiv.style.width");获取元素值

removeAttribute("oDiv.style.width");删除元素值

Day6--------DOM nodes

标签:des   style   io   ar   使用   sp   文件   on   div   

原文地址:http://www.cnblogs.com/fleshy/p/4121767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!