熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

jquery 滾動條事件簡單實例

2022-06-13   來源: JSP教程 
這篇文章介紹了jquery滾動條事件的簡單實例有需要的朋友可以參考一下   復制代碼 代碼如下:

  
<!DOCTYPE html PUBLIC "//WC//DTD XHTML Transitional//EN" "
<html xmlns="
<head>
<meta httpequiv="ContentType" content="text/html; charset=utf" />
<title>無標題文檔</title>
<script type="text/javascript" src="jqueryjs"></script>
<script type="text/javascript">
$(function(){
var lazyheight = ;
//獲取數據
function showload(){
lazyheight = parseFloat($(window)height()) + parseFloat($(window)scrollTop());
if ($(document)height() <= lazyheight) {
alert("xxx");
}
}
//showload();
//綁定事件
$(window)bind("scroll" function(){
//當滾動條滾動時
showload();
});
})
</script>
</head>
<body>
<img src="_jpg"/>
<img src="_jpg"/>
<img src="_jpg"/>
</body>
</html>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20441.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.