中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

JS Prompt能自定義按鈕文本嗎

js
小樊
84
2024-10-12 21:35:26
欄目: 編程語言

JavaScript的prompt()函數本身不支持自定義按鈕文本。prompt()函數會顯示一個帶有指定提示信息和默認輸入框的對話框,用戶可以在其中輸入信息。但是,prompt()函數并沒有提供直接的方式來修改按鈕的文本。

如果你需要自定義按鈕文本,你可能需要使用其他方法來實現這個功能。例如,你可以創建一個自定義的模態對話框(modal dialog)來代替prompt()函數。在這個自定義對話框中,你可以完全控制按鈕的文本和其他樣式。

下面是一個簡單的示例,展示了如何使用HTML、CSS和JavaScript創建一個自定義的模態對話框:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Custom Prompt</title>
    <style>
        /* 模態對話框樣式 */
        .modal {
            display: none; /* 默認隱藏 */
            position: fixed; /* 固定位置 */
            z-index: 1; /* 確保在最上層 */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4); /* 背景半透明 */
        }

        .modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
    </style>
</head>
<body>

<!-- 模態對話框 -->
<div id="myModal" class="modal">
    <div class="modal-content">
        <span class="close">&times;</span>
        <p>請輸入你的信息:</p>
        <input type="text" id="customInput">
        <button id="customButton">確定</button>
    </div>
</div>

<script>
    // 獲取模態對話框和按鈕元素
    var modal = document.getElementById("myModal");
    var btn = document.getElementById("customButton");
    var span = document.getElementsByClassName("close")[0];

    // 點擊按鈕打開模態對話框
    btn.onclick = function() {
        modal.style.display = "block";
    }

    // 點擊關閉按鈕關閉模態對話框
    span.onclick = function() {
        modal.style.display = "none";
    }

    // 點擊模態對話框外部區域關閉模態對話框
    window.onclick = function(event) {
        if (event.target == modal) {
            modal.style.display = "none";
        }
    }
</script>

</body>
</html>

在這個示例中,我們創建了一個自定義的模態對話框,其中包含一個輸入框和一個按鈕。你可以通過修改CSS樣式來自定義按鈕和其他元素的文本和樣式。點擊按鈕時,模態對話框會顯示出來,你可以輸入信息并點擊確定按鈕。點擊關閉按鈕或模態對話框外部區域時,模態對話框會關閉。

0
交口县| 巫山县| 正镶白旗| 宜州市| 玉环县| 岢岚县| 清远市| 长顺县| 元氏县| 安顺市| 大丰市| 永吉县| 茶陵县| 阜南县| 汪清县| 苗栗县| 平江县| 阳城县| 班戈县| 南宁市| 四川省| 西藏| 神农架林区| 湟中县| 蓝田县| 阿城市| 方城县| 花垣县| 精河县| 太仓市| 樟树市| 湘乡市| 芦溪县| 杭锦旗| 阿鲁科尔沁旗| 揭阳市| 海丰县| 十堰市| 蕉岭县| 上栗县| 平湖市|