- Prototype 教程
- Prototype - 首页
- Prototype - 简要概览
- Prototype - 有用功能
- Prototype - 实用程序方法
- Prototype - 元素对象
- Prototype - 处理数字
- Prototype - 处理字符串
- Prototype - 处理数组
- Prototype - 处理哈希
- Prototype - 基本对象
- Prototype - 模板
- Prototype - 枚举
- Prototype - 事件处理
- Prototype - 表单管理
- Prototype - JSON 支持
- Prototype - AJAX 支持
- Prototype - 表达范围
- Prototype - 周期性执行
- Prototype 有用资源
- Prototype - 快速指南
- Prototype - 有用资源
- Prototype - 讨论
Prototype - descendants() 方法
此方法收集元素的所有后代,并将其作为扩展元素阵列返回。
请注意,Prototype 的所有 DOM 遍历方法都将忽略文本节点,只返回元素节点。
语法
element.descendants() ;
返回值
HTML 元素数组。
示例
<html> <head> <title>Prototype examples</title> <script type = "text/javascript" src = "/javascript/prototype.js"></script> <script> function showElements() { var arr = $('father').descendants(); arr.each(function(node) { alert(node.nodeName + ': ' + node.innerHTML); }); } </script> </head> <body> <p>Click descendants button to see the result.</p> <div id = "father"> <p id = "kid">This is first paragraph</p> </div> <br /> <input type = "button" value = "descendants" onclick = "showElements();"/> </body> </html>
输出
prototype_element_object.htm
广告