- 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 - cumulativeScrollOffset() 方法
此方法计算并返回嵌套滚动容器中的元素的累积滚动偏移。这会累加元素及其所有父元素的 scrollLeft 和 scrollTop。
这用于计算处于多个滚动容器中(例如,滚动容器中的可拖动元素,本身也是滚动文档的一部分)的元素的滚动偏移。
此方法返回一个保留元素的 offsetLeft 和 offsetTop 的数组。
语法
element.cumulativeScrollOffset();
返回值
包含两个数字 [offset left, 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_element_object.htm
广告