Home>Article>Web Front-end> What is the usage of alert in javascript
In JavaScript, the usage of alert is "alert (plain text displayed in the dialog box)". The alert method is used to display an alert box with a specified message and an OK button. It can be used to alert the user or debug the program.

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.
alert() method is used to display an alert box with a specified message and an OK button.
Syntax
alert(message)
message refers to the plain text (not HTML text) to be displayed in the dialog box that pops up on the window
Example:
Alert in JS is used to pop up a warning box in the browser.
There are three ways to use alert. Different ways have different effects.
The first way: write directly in the script tag
The code is as follows:
你看我出不出来
;
The effect is as follows:

The implementation effect diagram is as follows:
别点我
你看我出不出来

alert("这是外部alert"); //重新创建一个js文件,专门用于写alert
The code referencing the external alert is as follows:
The implementation effect diagram is as follows :

javascript advanced tutorial]
The above is the detailed content of What is the usage of alert in javascript. For more information, please follow other related articles on the PHP Chinese website!