下面有一段html文档
Introduction to the DOM
There are a number of reasons why the DOM is awesome, here are some:
It can be found everywhere.
It's easy to use.
It can...
分类:
编程语言 时间:
2014-08-14 14:09:48
阅读次数:
148
1.childNodes 属性可返回指定节点的子节点的节点列表(childNodes在firefox会选取空白节点) 我是文字1我是span 我是文字2 我是文字3 我是文字4 我是文字52.children //dom选取页面元素对象的子对象时,children 选取不包括空白节点 我是文字1我是...
分类:
Web程序 时间:
2014-08-06 14:35:01
阅读次数:
381
《STL源码剖析》中,指出SGI STL的list底层数据结构式循环双向链表,并且在链表尾端留一个空白节点,让end指向它。由于是双向的,那么list的迭代器必须是Bidirectional Iterator类别的。
下面,分别验证vs2010下和code blocks(gcc)下,list的底层实现是否是循环链表。
#include
#include
using namesp...
分类:
其他好文 时间:
2014-06-30 00:21:54
阅读次数:
202
1、childNodes引入空白节点问题:使用childElementCount或children2、innerText:
FF中不支持该属性,使用textContent代替3、变量名与某HTML对象id相同时,引用该变量只会取得id名与其相同的html对象(ie8-);声明变量时前面一律加上var...
分类:
其他好文 时间:
2014-05-14 03:56:46
阅读次数:
404