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 ');
}