工程页面进入时要求IE 隐藏标准按钮,最大化。
俺自己写了一个
 var WsShell = new ActiveXObject('WScript.Shell')
    WsShell.SendKeys('{F10}');
    WsShell.SendKeys('{V}');
    WsShell.SendKeys('{T}');
    WsShell.SendKeys('{S}');
    window.moveTo(0,0);
    window.resizeTo(screen.width,screen.height-30);
在本机上好用  在其他机器上报脚本错误 另外 在页面显示后刷新页面标准按钮有出现了。
感觉不应该这么写。
WINDOW.OPEN这种方法不让使用。就是说不弹出新的页面