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


HTML DOM Window alert()用法及代碼示例


HTML 窗口alert()方法用於顯示警告框。它顯示一條指定的消息帶有“確定”按鈕通常用於確保信息來自用戶。它返回一個字符串,表示要在警報框中顯示的文本。

注意:警報框會吸引您的注意力並讓您閱讀消息,並且使用太多警報會阻止您在網頁上執行其他操作,直到您將其關閉。

用法:

alert(message);

參數:

Message: 是需要在警報框中顯示的消息,它是可選的。

例子:通過double-clicking按鈕顯示警報框。

html


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h1 style="color: green;">
        GeeksforGeeks
    </h1>
    <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>

輸出:

例子:提醒當前 URL 的主機名

HTML


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, initial-scale=1.0">
    <title>Alert Hostname Example</title>
</head>
<body style="text-align: center;">
    <h1 style="color: green;">
        Geeks
    </h1>
    <p>
        To see the hostname of the current URL,
        click the "Show Hostname" button:
    </p>
    <button onclick="showHostname()">
        Show Hostname
    </button>
    <script>
        function showHostname() {
            let currentURL = window.location.hostname;
            alert("The hostname of the current URL is: " + currentURL);
        }
    </script>
</body>
</html>

輸出:

jiu

支持的瀏覽器:

  • 穀歌瀏覽器1
  • 邊 12
  • 火狐1
  • Opera 3
  • 野生動物園 1

我們有一份關於 Javascript 的備忘單,其中涵蓋了 Javascript 的所有重要主題,請查看這些主題Javascript Cheat Sheet-A JavaScript 基本指南.



相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML DOM Window alert() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。