返回到:Prototype – 元素对象
此方法计算并返回嵌套滚动容器中元素的累积滚动偏移量。这会添加一个元素及其所有父元素的累积 scrollLeft 和 scrollTop。
这用于计算位于多个滚动容器中的元素的滚动偏移量(例如,滚动容器中的可拖动元素本身就是滚动文档的一部分)。
此方法返回一个数组,保留元素的 offsetLeft 和 offsetTop。
语法
element.cumulativeScrollOffset();
返回值
两个数字的数组 [offset let, offset top]。
例子
<html> <head> <title>Prototype examples</title> <script type = "text/javascript" src = "/javascript/prototype.js"></script> <script> function getOffset() { firstElement = $('firstDiv'); var arr = firstElement.cumulativeScrollOffset(); alert ( "Offset Left: " +arr[0]+ " Offset Top : " +arr[0]); } </script> </head> <body> <p>Click getOffset button to see the result.</p> <div id = "firstDiv"> <p>This is first paragraph</p> </div> <br /> <input type = "button" value = "getOffset" onclick = "getOffset();"/> </body> </html>
返回到:Prototype – 元素对象
作者:terry,如若转载,请注明出处:https://www.web176.com/prototype_api/9132.html