当前位置: 代码迷 >> Java Web开发 >> jsp窗体加载时最大化解决思路
  详细解决方案

jsp窗体加载时最大化解决思路

热度:73   发布时间:2016-04-17 14:01:34.0
jsp窗体加载时最大化
在jsp中如何实现窗体加载时最大化
谢谢

------解决方案--------------------
用javascript吧。。。试一下
function js_open_new_window(destination_url)
{
var height,width;
height = top.screen.height;
width = top.screen.width;
myWindowHandle = window.open(destination_url, ' ', 'height= '+height+ ',width= '+width+ ',directories=no,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,resizable=yes,top=0,left=0 ');
}
  相关解决方案