當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。