zoukankan      html  css  js  c++  java
  • 禁用IE的工具栏、菜单栏、状态栏、最大化功能

    从一个页面跳转到WebFrame.aspx页面,并且禁用IE的工具栏、菜单栏、状态栏、最大化功能,且IE最大化

    <script type="text/javascript">
            function OpenWebFrame() {
                window.opener = null;
                window.open("WebFrame.aspx", "", "width=" + screen.availWidth + ",height=" + screen.availHeight + ",toolbar=no, menubar=no, scrollbars=no, resizable=yes, location=no, status=no");
                window.open("", "_self");
                window.close();
            }
        </script>

    在body中的onload中使用上面的函数

    <body onload="OpenWebFrame();">
    
    </body>
  • 相关阅读:
    MD5 Hashing in Java
    Caching in Presto
    ORC 文件存储格式
    Presto 性能优化点
    数据分页问题
    ES
    ES
    ES
    ES
    ES
  • 原文地址:https://www.cnblogs.com/gldblogs/p/4274223.html
Copyright © 2011-2022 走看看