JavaScript - 对话框



JavaScript 支持三种重要的对话框类型。这些对话框可用于发出警告、获取确认或获取用户输入。我们将逐一讨论每种对话框。

警告对话框

警告对话框主要用于向用户发出警告信息。例如,如果某个输入字段要求输入文本,但用户未提供任何输入,则作为验证的一部分,可以使用警告框来显示警告信息。

尽管如此,警告框仍然可以用于更友好的消息。警告框只有一个“确定”按钮供选择和继续。

示例

<html>
   <head>   
      <script type = "text/javascript">
         function Warn() {
            alert ("This is a warning message!");
            document.write ("This is a warning message!");
         }
      </script>     
   </head>
   
   <body>
      <p>Click the following button to see the result: </p>      
      <form>
         <input type = "button" value = "Click Me" onclick = "Warn();" />
      </form>     
   </body>
</html>

确认对话框

确认对话框主要用于获取用户对任何选项的同意。它显示一个带有两个按钮的对话框:确定取消

如果用户单击“确定”按钮,则窗口方法confirm()将返回 true。如果用户单击“取消”按钮,则confirm()返回 false。您可以按如下方式使用确认对话框。

示例

<html>
   <head>   
      <script type = "text/javascript">
         function getConfirmation() {
            var retVal = confirm("Do you want to continue ?");
            if( retVal == true ) {
               document.write ("User wants to continue!");
               return true;
            } else {
               document.write ("User does not want to continue!");
               return false;
            }
         }
      </script>     
   </head>
   
   <body>
      <p>Click the following button to see the result: </p>      
      <form>
         <input type = "button" value = "Click Me" onclick = "getConfirmation();" />
      </form>      
   </body>
</html>

提示对话框

当您想要弹出文本框以获取用户输入时,提示对话框非常有用。因此,它使您可以与用户交互。用户需要填写该字段,然后单击“确定”。

此对话框是使用名为prompt()的方法显示的,该方法接受两个参数:(i) 您要在文本框中显示的标签,以及 (ii) 要在文本框中显示的默认字符串。

此对话框有两个按钮:确定取消。如果用户单击“确定”按钮,则窗口方法prompt()将返回文本框中输入的值。如果用户单击“取消”按钮,则窗口方法prompt()返回null

示例

以下示例显示了如何使用提示对话框:

<html>
   <head>     
      <script type = "text/javascript">
         function getValue() {
            var retVal = prompt("Enter your name : ", "your name here");
            document.write("You have entered : " + retVal);
         }
      </script>      
   </head>
   
   <body>
      <p>Click the following button to see the result: </p>      
      <form>
         <input type = "button" value = "Click Me" onclick = "getValue();" />
      </form>      
   </body>
</html>
广告