当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Window alert()用法及代码示例


窗口alert()方法用于显示警报框。它显示指定的消息以及“确定”按钮,通常用于确保信息通过用户。它返回一个字符串,该字符串表示要在警报框中显示的文本。

用法:

alert(message)

以下示例程序旨在说明窗口alert()方法:


显示警报框。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Window alert() Method in HTML 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Window alert() Method</h2> 
  
    <p> 
      For displaying the alert message, double 
      click the "Show Alert Message" button:  
    </p> 
  
    <button ondblclick="myalert()"> 
      Show Alert Message 
    </button> 
  
    <script> 
        function myalert() { 
            alert("Welcome to GeeksforGeeks.\n " + 
                "It is the best portal for computer" +  
                         "science enthusiasts!"); 
        } 
    </script> 
  
</body> 
  
</html>

输出:

单击按钮后

支持的浏览器:下面列出了Window alert()方法支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | Window alert() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。