JavaScript dialog box use method (Warning box JavaScript confirmation box Prompt box) _ Basics

Source: Internet
Author: User

1. Warning Box

Warning boxes are often used to ensure that users can get certain information.

When the warning box appears, the user needs to click on the OK button to continue the operation.

Grammar:

Copy Code code as follows:

Alert ("Text")

2. Confirmation Box

The confirmation box is used to enable users to authenticate or accept certain information.

When the confirmation box appears, the user needs to click OK or Cancel button to continue the operation.

If the user clicks Confirm, then the return value is true. If the user clicks Cancel, the return value is false.

Grammar:

Copy Code code as follows:

Confirm ("text")

3. Cue box

A prompt box is often used to prompt the user to enter a value before entering the page.

When the prompt box appears, the user needs to enter a value and then click the Confirm or Cancel button to continue manipulating.

If the user clicks Confirm, the return value is the value entered. If the user clicks Cancel, the return value is null.

Grammar:

Copy Code code as follows:

Prompt ("text", "Default value")

Instance:

Copy Code code as follows:

<body>
<script type= "Text/javascript" >
var option=confirm ("Choose option?"); /true,false
alert (option);
var poption=prompt ("Right,this?"); /null or other
alert (poption);
</script>
</body>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.