HTML DOM 基本操作

获取元素的节点,获取元素的子孙节点,获取元素的父节点祖先节点。获取元素的属性,内容,标签
获取元素的样式位置尺寸

HTML DOM 中很重要的一个对象

window 对象 在这里 http://help.dottoro.com/ljrwrqew.php 

Document 这里也有很详细的解释 http://help.dottoro.com/ljwxewvs.php

后面列出了该对象的属性,方法和事件。

document.getElementById();

        http://help.dottoro.com/ljrkpkbi.php  这里做出了详细的解释,并且解释了IE8之前的浏览器的特殊处理。

getElementsByName()

        http://help.dottoro.com/ljlfpmux.php

childNodes

    http://help.dottoro.com/ljvaqlwx.php 此页面包含了到达firstChild, nextSibling, lastChild and previousSibling text nodes and comment nodes.nodeType 等相关的内容链接。后面不再赘述。

querySelector

    http://help.dottoro.com/ljlnafax.php 里面有详细讲解querySelectorAll 两者的区别 http://help.dottoro.com/lctodmkm.php 这里是此方法可以接受的选择器介绍

-------------

height

    http://help.dottoro.com/ljabkdni.php 解释了height是什么内容。注意,这里的height只是一个字面的值,并不是实际元素渲染时做拥有的值。The properties mentioned above can be used to access style settings. If you need the height of a rendered element you can use the clientHeight, offsetHeight and  scrollHeight properties and the getBoundingClientRect method.

getComputedStyle

    http://help.dottoro.com/ljscsoax.php 以及相关的资源在这里






你可能感兴趣的:(HTML DOM 基本操作)