javascript:加载后如何设置窗口对象参数
当用户导航到我的网站时,我想调整窗口大小并删除第一个窗口上的滚动条、标题栏、地址栏等。这是针对 Intranet Web 应用程序的。想法是显示一个调整大小的小登录窗口,类似于 Evernote 桌面应用程序登录窗口。换句话说,我需要这样做 - Window.open(“login.aspx”,“_self”,“高度= 250,宽度= 500,位置= 0,菜单栏= 0,可调整大小= 0,滚动条= 0,状态= 0,标题栏= 0,工具栏= 0 ”); 但我需要在同一个窗口(用户导航到的第一个窗口)上执行此操作。可以使用javascript吗? 我知道我可以使用 moveTo 和 resizeTo 函数来定位窗口并调整窗口大小。如何删除地址栏、位置栏、菜单栏、标题栏、状态栏? 浏览器是IE6&仅限 IE8。我不需要支持其他浏览器。
When users navigate to my website, I want to resize window and remove scrollbar, title bar, address bar etc on the first window. This is for intranet web application. Idea is to show a resized small login window similar to Evernote desktop application login window. In other words, I need to do this -
Window.open("login.aspx", "_self", "height=250, width= 500, location=0, menubar=0, resizable=0, scrollbars=0, status=0, titlebar=0, toolbar=0");
But I need to do it on the same window, the first window that user navigates to. Is it possible using javascript?
I know that I can use moveTo and resizeTo function to position and resize the window. How to remove address bar, location bar, menu bar, title bar, status bar? Browser is IE6 & IE8 only. I don't need to support other browsers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在当前窗口中执行以下操作:
尝试一下,将其输入到浏览器的地址栏中: javascript:window.resizeTo(200,300);
请注意:某些浏览器向用户提供禁止此类浏览器功能的选项(例如 FF)。
in the cureent window do:
Try it, enter this into the location bar of your browser: javascript:window.resizeTo(200,300);
Beware: some browsers offer the user options to suppress such browser features (FF for example).