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

Play with the connect function with timeout in Linux

In the previous article, we played with timeouts ...

MySQL database operations (create, select, delete)

MySQL Create Database After logging into the MySQ...

Solution to mysql error code 1064

If the words in the sql statement conflict with t...

How to place large images in a small space on a web page

Original source: www.bamagazine.com There are nar...

Detailed explanation of JavaScript closure issues

Closures are one of the traditional features of p...

CSS flex several multi-column layout

Basic three-column layout .container{ display: fl...

MySQL million-level data paging query optimization solution

When there are tens of thousands of records in th...

A performance bug about MySQL partition tables

Table of contents 2. Stack analysis using pt-pmap...

Detailed explanation of the implementation of shared modules in Angular projects

Table of contents 1. Shared CommonModule 2. Share...

Detailed explanation of ECharts mouse event processing method

An event is an action performed by the user or th...

JS canvas realizes the functions of drawing board and signature board

This article shares the specific code of JS canva...

CSS stacking and z-index example code

Cascading and Cascading Levels HTML elements are ...

Share the 15 best HTML/CSS design and development frameworks

Professional web design is complex and time-consu...