本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
javascript 通过children 获取表格内部的标签内容
通过children[n]、childNodes[n]来获取表格内的标签值
<div id="tupian"><table cellpadding="0" cellspacing="1" border="0" width="100%" id="tabl ...
ztree 获取当前选中节点的子节点集合
功能:获取当前选中节点的子节点id集合。
步骤:1.获取当前节点
2.用ztree的方法transformToArray()获取当前选中节点(含选中节点)的子节点对象集合。
3.遍历集合,取出需要的值。
treeNode:当前选中节点对象
function getChildNodes(treeNode) {
var child ...
DOM基础
第六章 DOM基础
一、使用DOM
1.获取html对象
nodeName\nodeValue\nodeType\ownerDocument\firstChild\lastChild\childNodes\
previousSibling\nextSiling\hasChildNodes\attributes\appendChild\removeChild
replaceChild\insertC ...
childNodes behavior diffrent in IE & FF
IE and FF count in different ways the childNodes. FF (DOM compliant mode) counts even the possible textNodes (the gaps between tags) while IE counts only some of them.
To avoid this, use one the solut ...
parentNode与parentElement区别 childNodes与children区别
parentElement and children is for IE
parentNode and childNodes is for all browsers you should use this one to make crossbrowser code
http://blog.csdn.net/teresa502/archive/2009/12/08/4962282.aspx