ホームページ >ウェブフロントエンド >jsチュートリアル >jsでスクロールバーを動的に一番下に移動するサンプルコード_javascriptスキル

jsでスクロールバーを動的に一番下に移動するサンプルコード_javascriptスキル

WBOY
WBOYオリジナル
2016-05-16 16:51:151137ブラウズ
复制代码代码如下:

var currentPosition,timer;
function GoBottom(){
timer=setInterval("runToBottom()",50);
}
function runToBottom(){
currentPosition=document.documentElement.scrollTop || document.body.scrollTop;
currentPosition =30;
if(currentPosition{
//window.scrollTo(0,currentPosition) ;
//alert(document.documentElement.clientHeight " " document.documentElement.scrollTop " " document.documentElement.scrollHeight "#" document.body.clientHeight " " document.body.scrollTop " " document.body.scrollHeight);
document.body.scrollTop = currentPosition;
}
else
{
document.body.scrollTop = document.body.scrollHeight;
clearInterval(タイマー);
}
}
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。