Home  >  Article  >  Web Front-end  >  Summary of how to open a dialog window in IE using js

Summary of how to open a dialog window in IE using js

高洛峰
高洛峰Original
2016-12-09 10:57:41962browse

The nature of the dialog box is divided into modal dialog box and non-modal dialog box:

1. Modal dialog box:

After opening this dialog box, all operations outside the dialog box are prohibited. If you want to perform other operations, you must first close this dialog box.

js command:
showModalDialog();

2. Non-modal dialog box:

Contrary to the modal dialog box, after opening, you can still perform operations outside the dialog box.

js command:
showModelessDialog();


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn