弹出全屏显示的网页

在设计网页时,对于一些只有指定用户才能看到的信息,可以以全屏显示的网页模式展示给用户,这样可以保证用户看后能及时将其关闭,再进行其他的操作。示例如下:

<script language="javascript">
 function opendialog()
 {
 var width=screen.width;    //屏幕的宽度
 var height=screen.height;  //屏幕的高度
 window.showModalDialog("new.htm","","dialogWidth="+width+"px;dialogHeight="+height+"px;status=no;help=no;scrollbars=no")
 }
 </script>

<a href="#" onClick="opendialog()">弹出全屏显示的网页模式对话框</a>

posted @ 2012-11-14 16:46  rabbit2012  阅读(567)  评论(0编辑  收藏  举报