Home  >  Article  >  Web Front-end  >  How to use jQuery to create a pop-up window

How to use jQuery to create a pop-up window

coldplay.xixi
coldplay.xixiOriginal
2020-12-11 09:27:4912576browse

How to use jQuery to make a pop-up window: first set the id of the button label to mybutton; then obtain the button object through the id and bind the click event to it; finally, when the button is clicked, use [confirm() ] method pops up a dialog box.

How to use jQuery to create a pop-up window

The operating environment of this tutorial: windows7 system, jquery3.2.1 version, thinkpad t480 computer.

Recommended: jquery video tutorial

How to use jQuery to make a pop-up window:

1. Create a new html file, Named test.html, it is used to explain how to use jquery to pop up a dialog box.

How to use jQuery to create a pop-up window

2. In the test.html file, use the button tag to create a button to pop up the dialog box when clicked.

How to use jQuery to create a pop-up window

3. In the test.html file, set the id of the button label to mybutton. The button object will be obtained through this id below.

How to use jQuery to create a pop-up window

4. In the js tag, use the ready() method to execute the function method and bind the click event to the button when the page is loaded.

How to use jQuery to create a pop-up window

5. In the function method, obtain the button object through the id, bind the click event to it, and when the button is clicked, use confirm()The method pops up a dialog box. When the user clicks "OK", use the write() method to output the prompt.

How to use jQuery to create a pop-up window

#6. Open the test.html file in the browser and click the button to view the results.

How to use jQuery to create a pop-up window

Related learning recommendations: javascript learning tutorial

The above is the detailed content of How to use jQuery to create a pop-up window. For more information, please follow other related articles on the PHP Chinese website!

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