0

在网络应用程序中,我正在尝试使用这样的 javascript 打开网页:

OnClientClick="window.open('chat.aspx', 'OtherPage','width=400,Height=440,Top=350,left=0,titlebar=no,menubar=yes,location=no,resizable=no,channelmode=no,directories=no,status=no,scrollbar=no');"

现在我想将网页的位置固定在系统的右侧角落是否可能,请帮助我。

4

1 回答 1

0
function popup( width, height, url ) {
var left=screen.width-width;
var top=screen.height-height;
var pWin=open( url, 'win', 'width='+width+',height='+height+',left='+left+',t op='+top );
if( pWin.screenX != null ) {
pWin.screenX=left;
pWin.screenY=top;
}
}

您最终会看到一个至少大约位于屏幕右下角的窗口,其变化取决于所使用的确切浏览器。对于您的目的,这可能会或可能不会被接受;这是可以工作的。请注意,无论如何,它在 Firefox 和 IE 中都能正常工作。

于 2013-08-21T09:40:43.617 回答