如何计算工具栏,地址栏和其他导航工具的高度(以像素为单位)?

时间:2010-08-05 16:54:53

标签: javascript

基本上我需要知道y轴距离屏幕左上角有多少像素,直到我到达实际的Web窗口。有没有人有任何想法......?

4 个答案:

答案 0 :(得分:14)

我不知道如何返回外部组件的高度,但是我从http://www.alexandre-gomes.com/?p=115获取了它并将其调整为也返回滚动条高度。

在以下浏览器中进行了测试:

  • FF 9 +
  • IE9 (谢谢Pax0r
  • Opera (谢谢Pax0r

如果有人可以在其他浏览器中测试它并给我反馈,我会相应地修改这个答案。

使用JQuery:

jQuery.getScrollBarSize = function() {
   var inner = $('<p></p>').css({
      'width':'100%',
      'height':'100%'
   });
   var outer = $('<div></div>').css({
      'position':'absolute',
      'width':'100px',
      'height':'100px',
      'top':'0',
      'left':'0',
      'visibility':'hidden',
      'overflow':'hidden'
   }).append(inner);

   $(document.body).append(outer);

   var w1 = inner.width(), h1 = inner.height();
   outer.css('overflow','scroll');
   var w2 = inner.width(), h2 = inner.height();
   if (w1 == w2 && outer[0].clientWidth) {
      w2 = outer[0].clientWidth;
   }
   if (h1 == h2 && outer[0].clientHeight) {
      h2 = outer[0].clientHeight;
   }

   outer.detach();

   return [(w1 - w2),(h1 - h2)];
};

alert( $.getScrollBarSize() ); // in Chrome = [15,15] in FF = [16,16]

没有JQuery

function getScrollBarSize () {  
   var inner = document.createElement('p');  
   inner.style.width = "100%";  
   inner.style.height = "100%";  

   var outer = document.createElement('div');  
   outer.style.position = "absolute";  
   outer.style.top = "0px";  
   outer.style.left = "0px";  
   outer.style.visibility = "hidden";  
   outer.style.width = "100px";  
   outer.style.height = "100px";  
   outer.style.overflow = "hidden";  
   outer.appendChild (inner);  

   document.body.appendChild (outer);  

   var w1 = inner.offsetWidth;  
   var h1 = inner.offsetHeight;
   outer.style.overflow = 'scroll';  
   var w2 = inner.offsetWidth;  
   var h2 = inner.offsetHeight;
   if (w1 == w2) w2 = outer.clientWidth;
   if (h1 == h2) h2 = outer.clientHeight;   

   document.body.removeChild (outer);  

   return [(w1 - w2),(h1 - h2)];  
};

答案 1 :(得分:8)

不幸的是,我认为现在并没有办法在所有浏览器中执行此操作。 Chrome,Firefox,Safari和Opera都支持window.innerHeightwindow.outerHeight,所以在这些浏览器中,假设您没有在框架内执行代码,那么就是以下情况:

var chromeH = window.innerHeight - window.outerHeight;

离开(你猜对了)Internet Explorer,它不支持这两个属性。它甚至不在IE9 PP3中。 为了公平对待IE,它们没有在DOM规范中定义搞定公平性,它们在w3c CSSOM working draft中定义。有"solution" 1 涉及调整窗口大小并再次调整大小,但它会导致窗口闪烁,并且无法使用选项卡式窗口。

1(滚动到第二个例子)

答案 2 :(得分:2)

这只是我发现的脚本,它在webkit浏览器中工作......:)

$.scrollbarWidth = function() {
  var parent, child, width;

  if(width===undefined) {
    parent = $('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo('body');
    child=parent.children();
    width=child.innerWidth()-child.height(99).innerWidth();
    parent.remove();
  }

 return width;
};

最小化版本:

$.scrollbarWidth=function(){var a,b,c;if(c===undefined){a=$('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo('body');b=a.children();c=b.innerWidth()-b.height(99).innerWidth();a.remove()}return c};

你必须在文件准备就绪时调用它......所以

$(function(){ console.log($.scrollbarWidth()); });

在Windows 7上测试了2012-03-28最新的FF,Chrome,IE&amp; Safari和100%工作。

来源:http://benalman.com/projects/jquery-misc-plugins/#scrollbarwidth

答案 3 :(得分:1)

window.screenTop

适用于除FF以外的大多数主流浏览器。对于移动网络应用程序,这可能很有用: - )

在FF中,您可以使用:window.screenX

http://www.w3schools.com/jsref/prop_win_screenleft.asp