Common parameters of IE web page pop-up windows can be set by yourself

Common parameters of IE web page pop-up windows can be set by yourself
The pop-up has nothing to do with whether your current window has a menu toolbar. You just need to write a script in the page and it will pop up. For example

Copy code
The code is as follows:

<a href=# onclick="window.open('xxx.aspx','Window Name','Parameters');">xxxxx</a>

The following are some pop-up window parameters, you can set them yourself, the parameters are separated by commas

Optional. String - list of objects separated by commas. Each item has its own value, which will be separated (eg: "fullscreen=yes, toolbar=yes"). Below are the various features that are supported.
channelmode = { yes | no | 1 | 0 } Whether to display ladder mode in the window. The default is no.
directories = { yes | no | 1 | 0 } Whether to display various buttons in the window. The default is yes.
fullscreen = { yes | no | 1 | 0 } Whether to display the browser in full screen mode. The default is no. Be very careful when using this feature. Because this attribute may hide the browser's title bar and menu, you must provide a button or other prompt to help the user close the browser window. ALT+F4 can close the window. A fullscreen window must use channelmode.
height = number Specifies the height of the window in pixels. The minimum value is 100.
left = number Specifies the distance from the left border of the window in pixels. The value must be greater than or equal to 0.
location = { yes | no | 1 | 0 } Specifies whether to display the address bar in the window. The default is yes.
menubar = { yes | no | 1 | 0 } Specifies whether to display the menu bar in the window. The default is yes.
resizable = { yes | no | 1 | 0 } Specifies whether to display user resizing handles on the window. The default is yes.
scrollbars = { yes | no | 1 | 0 } Specifies whether to display horizontal or vertical scroll bars in the window. The default is yes.
status = { yes | no | 1 | 0 } Specifies whether to display the status bar in the window. The default is yes.
titlebar = { yes | no | 1 | 0 } Specifies whether to display a title bar in the window. This option will be ignored when not calling an HTML Application or a dialog box. The default is yes.
toolbar = { yes | no | 1 | 0 } Specifies whether to display the toolbar in the window, including buttons such as forward, back, stop, etc. The default is yes.
top = number Specifies the top position of the window in pixels. The value must be greater than or equal to 0.
width = number specifies the width of the window in pixels. The minimum value is 100.

<<:  Mobile front-end adaptation solution (summary)

>>:  MySQL 8.0.25 installation and configuration tutorial under Linux

Recommend

vue+rem custom carousel effect

The implementation of custom carousel chart using...

CentOS7 installation GUI interface and remote connection implementation

Use the browser (webdriver)-based selenium techno...

Nginx reverse proxy configuration to remove prefix case tutorial

When using nginx as a reverse proxy, you can simp...

Example of writing mobile H5 to invoke APP (IOS, Android)

iOS 1. URL scheme This solution is basically for ...

Why should css be placed in the head tag

Think about it: Why should css be placed in the h...

Install Apple Mac OS X in VMWare12 Graphic Tutorial

1. Introduction: Because my friend wanted to lear...

7 skills that web designers must have

Web design is both a science and an art. Web desi...

Comprehensive understanding of Node event loop

Table of contents Node Event Loop Event loop diag...

Zabbix WEB monitoring implementation process diagram

Take zabbix's own WEB interface as an example...

Tomcat components illustrate the architectural evolution of a web server

1. Who is tomcat? 2. What can tomcat do? Tomcat i...

Three JavaScript methods to solve the Joseph ring problem

Table of contents Overview Problem Description Ci...