【转】javascript弹出固定大小的窗口页面

来源:http://weicfprince.blog.163.com/blog/static/8441066920081010113231969/

现在我们想弹出一个WEB窗体,让其处于屏幕的中间位置,并设置其固定大小,固定外观显示.
我们可以在一个JS文件中写这样一个函数:

//弹出固定大小固定位置固定外观的新窗口
function OpenWindow(url,w,h) {
var left=Math.round((window.screen.availWidth-w)/2);
var top=Math.round((window.screen.availHeight-100-h)/2);
var MyWin=window.open(url, "", "height="+h+", width="+w+",top="+top+",left="+left+", toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
}
url:为你要弹出的窗体文件,可以是HTML,ASPX等,设置为你工程下要显示页面的路径.
w:你要显示窗体的宽度.
h:你要显示窗体的高度.
toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no:窗体显示的状态.
然后就可以调用了.调用的时候可以给该函数传递你想要的参数设置.

测试例子:page1里面显示一个html按钮,单击按钮打开page2.

<!-- page1.html -->
<html>
<head>
<title>pege1</title>
<script "text/javescript">
function OpenWindow(url,w,h)
{
var left=Math.round((window.screen.availWidth-w)/2);
var top=Math.round((window.screen.availHeight-100-h)/2);
var MyWin=window.open(url, "", "height="+h+", width="+w+",top="+top+",left="+left+", toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, status=no");
}
</script>
</head>
<body>
测试页面。点击下面按钮试试看吧。<br/>
<input type="button" value="测试" onclick=OpenWindow("page2.html",400,500) /> </body>
</html>
<!-- page2.html -->
<html> <head>
<title>page2</title>
</head> <body>
测试页面page2
</body> </html>
上一篇:php分享三十三:常量


下一篇:JAVA基础复习与总结<四> 抽象类与接口