|
以下为引用的内容: <script language="javascript" type="text/javascript"> <!-- //实现window.open全屏显示窗口 //作者:老韩 //技术支持:cn-web.com function myOpen(winurl,winname) { objWin__ = window.open( winurl,winname, "scrollbars=no,status=yes,resizable=no,top=0,left=0,width="+(screen.availWidth-10)+",height="+(screen.availHeight-30)); objWin__ .focus();
return true; } -->
|