返回到:Prototype – 元素对象
此方法收集元素的所有后代并将它们作为扩展元素数组返回。
请注意,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 – 元素对象
作者:terry,如若转载,请注明出处:https://www.web176.com/prototype_api/9126.html