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

DOM不同的结点类型

时间:2016-09-08 00:47:47      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

1)node类型

nodeName(what node) and nodeValue(always null)

node父子之间可以用childNodes来表示 firstChild,childNode[a],lastChild

兄弟结点,可以用nextsiBiling,previousSibling

在什么点前面插入地加  a.insertBefore(c,b);

node的替换a.replaceChild(c,b);

node的移除a.remove(b)

克隆cloneNode(),里面有一布尔值,是否进行深复制

2)document

nodeName=#document 

nodeValue=9

document.title取得题目

document.body

document.documentElement

document.doctype

document.URL

document.forms

document.images

document.getElementById()

document.getElementByTagName()

document.getElementByname()

document.write()

DOM不同的结点类型

标签:

原文地址:http://www.cnblogs.com/vhyc/p/5851433.html

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