Ⅰ js如何設置div的寬高
Ⅱ js 或jquery 怎麼獲取div的scrollHeight
div.scrollHeight 就可以了。自
但是這里有個問題,如果內容撐出去了,那麼這個scrollHeight就是內容的高度,
如果內容高度沒有div的高度高的話,scrollHeight的值就是div的高。
Ⅲ 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;
}
Ⅳ 【高手請進】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
Ⅳ 如何用JS獲取滑鼠滾動高度,再觸發相應的事件。速救!!!
$(window).scroll(function(){
//當滾動到最底部以上100像素時,載入新內容
if($(this).scrollTop()>=80){
$("div.navbar").css("position","fixed");
}else{
$("div.navbar").css("position","relative");//也可能是absolute等,反正就是你原來的值
}
if($(this).scrollTop()>=150){
$("div.log").css("position","fixed");
}else{
$("div.log").css("position","relative");//也可能是absolute等,反正就是你原來的值
}
});
//這個應該是可以的,原來的樣式是什麼樣,改回什麼樣式就可以了,我只是寫了一個例子