- 原型教程
- 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 - scrollTo() 方法
此方法可滾動視窗,以便元素位於視口頂部。
這具有與使用 HTML 錨 相類似的效果(除了瀏覽器的歷史記錄未被修改)。
語法
element.scrollTo();
返回值
返回一個 HTML 元素。
示例
<html>
<head>
<title>Prototype examples</title>
<script type = "text/javascript" src = "/javascript/prototype.js"></script>
<script>
function showResult() {
$('heading').scrollTo();
}
</script>
</head>
<body">
<h1 id = "heading">This is the heading.</h1>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<p id = "test">Click the button see the result.</p>
<input type = "button" value = "Click" onclick = "showResult();"/>
</body>
</html>
輸出
prototype_element_object.htm
廣告