页面位置
<html> <head>
<title>Open Window</title>
<script language="JavaScript">
function OpenWindow()
{
thisWin = window.open("aa.htm", null, "width=500,height=400")
}
</script>
</head>
<body>
<center>
<input type="button" value="Creat New Window" onClick="OpenWindow()">
</center>
</body>
</html>
我现在打开了一个新的页面,但是我想让它在屏幕的右下角显示,应该要怎么做?
谢谢!!!!
[此贴子已经被作者于2007-11-17 10:48:19编辑过]