如何获得HTA窗口的大小?

时间:2011-03-31 16:37:16

标签: dom hta windows-scripting

您可以设置HTA窗口的大小,但我找不到获取其大小的方法。

我所能想到的只是阅读document.body.offsetWidth.offsetHeight,但这些会为您提供视口大小而非实际窗口大小。

有可能知道吗?

2 个答案:

答案 0 :(得分:2)

似乎没有属性或方法来获取该信息。现在已发布的测试版IE9具有新属性outterWidthoutterHeight,但现在不是一个选项。

所以我设计了一个解决方法:

function addWinSizeGetterFuncs(){
   var currViewportWidth = document.body.offsetWidth ;
   var currViewportHeight = document.body.offsetHeight ;
   resizeTo(currViewportWidth,currViewportHeight) ;
   var chromeWidth = currViewportWidth-document.body.offsetWidth ;
   var chromeHeight = currViewportHeight-document.body.offsetHeight ;
   resizeTo(currViewportWidth+chromeWidth,currViewportHeight+chromeHeight) ;
   window.getWidth = new Function('return document.body.offsetWidth+'+chromeWidth) ;
   window.getHeight = new Function('return document.body.offsetHeight+'+chromeHeight) ;
}

该函数的作用是为window对象创建两个新方法:window.getWidth()window.getHeight()。他们将获得窗口的实际大小 该函数需要存在body对象,因此必须在BODY标记之后执行。


现在我们就在这里,同样的问题适用于窗口位置。你无法获得实际的窗口位置。你可以得到的是相对于屏幕的视口位置。 所以同样的workaroud也适用于此:

function addWinPosGetterFuncs(){
   var currViewportLeft = screenLeft ;
   var currViewportTop = screenTop ;
   moveTo(currViewportLeft,currViewportTop) ;
   var viewportOffsetX = screenLeft-currViewportLeft ;
   var viewportOffsetY = screenTop-currViewportTop ;
   moveTo(currViewportLeft-viewportOffsetX,currViewportTop-viewportOffsetY) ;
   window.getScreenX = new Function('return screenLeft-'+viewportOffsetX) ;
   window.getScreenY = new Function('return screenTop-'+viewportOffsetY) ;
}

同样,该函数创建两个新方法来检索实际窗口位置:window.getScreenX()window.getScreenY()

问题解决了。我会让你们弄清楚这个功能是如何运作的;)

答案 1 :(得分:1)

缩小版:

window.pos=new function(w,h,x,y){with(document.body)return(
    resizeTo(w=offsetWidth,h=offsetHeight),resizeTo(w+(w=w-offsetWidth),h+(h=h-offsetHeight)),
    moveTo  (x=screenLeft ,y=screenTop   ),moveTo  (x-(x=screenLeft-x ),y-(y=screenTop-y   )),{
        w:function(){return offsetWidth +w},
        h:function(){return offsetHeight+h},
        x:function(){return screenLeft  -x},
        y:function(){return screenTop   -y}
})};