A. 需要一個js代碼,頁面打開後立即將滾動條滾到指定高度,高度可任意修改
<scripttype="text/javascript">
window.onload=setTimeout(function(){
window.scrollTo(0,500);//修改500為指定高度
},5);
</script>
B. js如何獲取滾動條的高度
給你貼兩復個JS函數,專門用來獲取制網頁滾動高度和滾動寬度的://獲取網頁縱向滾動高度function
getScrollTop(){
var
D
=
document;
return
Math.max(D.body.scrollTop,
D.documentElement.scrollTop)}//獲取網頁橫向滾動寬度function
getScrollLeft(){
var
D
=
document;
return
Math.max(D.body.scrollLeft,
D.documentElement.scrollLeft)}應該可以解決你的問題。
查看原帖>>
C. 如何使用JS控制DIV內容的滾動條
1、首先需要新建一個HTML文檔,這里設立一下基本的架構。
D. 【高手請進】js如何獲得頁面瀏覽器滾動條的高度值 ,並賦值給html頁面中的div
網頁可見區域寬: document.body.clientWidth
網頁可見區域高: document.body.clientHeight
網頁可見區域寬: document.body.offsetWidth (包括邊線的寬)
網頁可見區域高: document.body.offsetHeight (包括邊線的高)
網頁正文全文寬: document.body.scrollWidth
網頁正文全文高: document.body.scrollHeight
網頁被捲去的高: document.body.scrollTop
網頁被捲去的左: document.body.scrollLeft
網頁正文部分上: window.screenTop
網頁正文部分左: window.screenLeft
屏幕解析度的高: window.screen.height
屏幕解析度的寬: window.screen.width
屏幕可用工作區高度: window.screen.availHeight
屏幕可用工作區寬度: window.screen.availWidth
E. java web項目中js怎麼取到div中滾動條的高度
function ScollPostion() {//滾動條位置
var t, l, w, h;
if (document.documentElement && document.documentElement.scrollTop) {
t = document.documentElement.scrollTop;
l = document.documentElement.scrollLeft;
w = document.documentElement.scrollWidth;
h = document.documentElement.scrollHeight;
} else if (document.body) {
t = document.body.scrollTop;
l = document.body.scrollLeft;
w = document.body.scrollWidth;
h = document.body.scrollHeight;
}
return { top: t, left: l, width: w, height: h };
}
寫成一個方法了,http://..com/link?url=_這個是原來的連接
還有一個是
function getScrollTop(){
var scrollTop=0;
if(document.documentElement&&document.documentElement.scrollTop){
scrollTop=document.documentElement.scrollTop;
}else if(document.body){
scrollTop=document.body.scrollTop;
}
return scrollTop;
}
F. 為什麼在js中定義div高度,不出現滾動條
看下js是否執行了.
下面的代碼是可以出現滾動條的
<html>
<head>
<script>
functionsetH(){
document.getElementById('div1').style.height="200px";
}
</script>
</head>
<bodyonload="setH();">
<divid="div1"style="overflow:auto;width:80px">
<divstyle="background:yellow;height:80px;width:80px"></div>
<divstyle="background:pink;height:80px;width:80px"></div>
<divstyle="background:blue;height:80px;width:80px"></div>
<divstyle="background:red;height:80px;width:80px"></div>
<divstyle="background:green;height:80px;width:80px"></div>
</div>
</body>
</html>