jQuery scrollTop()
此方法返回或設定匹配元素的滾動條的垂直偏移量。
語法結構一:
[JavaScript] 純文字檢視 複製程式碼.scrollTop()
不帶引數的時候返回匹配元素相對滾動條頂部的偏移量。
jQuery1.2.6版本新增。
語法結構二:
[JavaScript] 純文字檢視 複製程式碼.scrollTop(value)
引數解析:
value:設定滾動條垂直位置偏移量。
jQuery1.2.6版本新增。
程式碼例項:
如果此函式沒有引數,那麼就是獲取使匹配元素拖動滾動條向上滾動的距離,也就是匹配元素內容被頂部所遮擋的尺寸,此函式有效的條件是匹配元素的高度小於內容的高度,並且在垂直方向上有滾動條。先看一個圖示:
很多人認為箭頭指向的尺寸是scrollTop()返回值,並非如此,此尺寸只是一個標誌而已。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>scrollTop()函式-螞蟻部落</title> <style type="text/css"> #box{ width:200px; height:200px; border:1px solid black; overflow:auto; } #inner{ height:400px; width:20px; margin:0px auto; background:red; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#bt").click(function(){ alert($("#box").scrollTop()) }) }); </script> </head> <body> <div id="box"> <div id="inner">螞蟻部落歡迎您</div> </div> <input type="button" id="bt" value="檢視結果"/> </body> </html>
如果此函式帶有引數,那麼設定匹配元素向上滾動的尺寸。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>scrollTop()函式-螞蟻部落</title> <style type="text/css"> #box{ width:200px; height:200px; border:1px solid black; overflow:auto; } #inner{ height:400px; width:20px; margin:0px auto; background:red; } </style> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#bt").click(function(){ $("#box").scrollTop(30) }) }); </script> </head> <body> <div id="box"> <div id="inner">螞蟻部落歡迎您</div> </div> <input type="button" id="bt" value="檢視結果"/> </body> </html>
以上程式碼中,點選按鈕可以設定匹配元素向上滾動的尺寸。
相關文章
- JavaScript scrollTopJavaScript
- vue scrollTop 無法賦值Vue賦值
- scrollTop doesn't scroll on Chrome 61Chrome
- window.pageYOffset獲取scrollTop值得作用
- scrollTop是什麼及用法說明
- Chrome對document.documentElement.scrollTop的識別Chrome
- $(document).scrollTop()返回值始終是0解析
- scrollHeight、scrollTop、clientHeight瀏覽器相容問題client瀏覽器
- scrollTop()返回值一直等於0原因
- vue專案 設定scrollTop不起作用 總結Vue
- document.body.scrollTop返回值為0解決方案
- chrome下document.documentElement.scrollTop為0的解決方案Chrome
- 蒙了嗎?offsetLeft、offsetWidth、scrollTop、scrollWidth、event.pageX
- 相容各個瀏覽器的scrolltop屬性簡單介紹瀏覽器
- jQuery初探:自制jQueryjQuery
- 我的’jQuery’和jQueryjQuery
- 我的''jQuery''和jQueryjQuery
- 【Jquery】jquery 基本的動畫jQuery動畫
- 【Jquery】jquery 自定義動畫jQuery動畫
- jQuery :not()jQuery
- jQuery not()jQuery
- jQuery is()jQuery
- jQuery()jQuery
- jQuery on()jQuery
- jQueryjQuery
- JQuery模板外掛-jquery.tmpljQuery
- jquery列印頁面(jquery.jqprint)jQuery
- jQuery入門(三)--- jQuery語法jQuery
- jQuery 3教程(一):jQuery介紹jQuery
- jQuery之使用jQuery.fn.prop()替換jQuery.fn.attr()jQuery
- JQuery基本知識彙總;JQuery常用方法;淺入瞭解JQueryjQuery
- (jQuery) jQuery中的事件與動畫(上)jQuery事件動畫
- jquery.fn.extend與jquery.extendjQuery
- jQuery 1.10.0 和 jQuery 2.0.1 釋出jQuery
- jQuery表單外掛jQuery.formjQueryORM
- jQuery 3教程(二):jQuery選擇器jQuery
- jQuery心得2--jQuery案例剖析1jQuery
- jQuery初探jQuery