JS.GetAllChild(element,deep,condition)使用介绍

时间:2013-09-21    点击:71   
复制代码 代码如下:

window.GetAllChild = function (element, deep, condition) {
if (!!!deep) { deep = 1; }
if (!!!condition || condition == '') { condition = '1==1'; }
deep--;
if (!!!element || !!!element.childNodes || element.childNodes.length <= 0) { return []; }
var result = new Array();
for (var i = 0; i < element.childNodes.length; i++) {
if (element.style && (element.style.visibility == 'hidden' || element.style.display == 'none')) {
continue;
}
var child = element.childNodes[i];
if (eval(condition)) {
result.push(child);
}
if (deep > 0) {
result = result.concat(GetAllChild(child, deep, condition));
}
}
return result;
}
JavaScript加强之自定义callback示例
js中通过split函数分割字符串成数组小例子
js中的异常处理try...catch使用介绍
使用JS读秒使用示例
用RadioButten或CheckBox实现div的显示与隐藏
> 返回     
地址:上海市普陀区胶州路941号长久商务中心 电话: QQ:
© Copyright 2012 上海网络 Product All Rights Reserved