溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

JS對話框函數(shù)alert(),confirm(),prompt()

發(fā)布時(shí)間:2020-07-17 21:58:18 來源:網(wǎng)絡(luò) 閱讀:394 作者:素顏豬 欄目:web開發(fā)

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title></title>

<link rel="stylesheet" href="">

<style type="text/css" media="screen">

ul{

list-style: none;

}

</style>

</head>

<body>

<ul>

<li><input type="button" value="alert button" id="alert-btn"/></li>

<li><input type="button" value="confirm button" id="confirm-btn"/></li>

<li><input type="button" value="prompt button" id="prompt-btn"/></li>

</ul>

<script src="http://code.jquery.com/jquery-1.7.2.min.js" type="text/javascript"></script>

<script type="text/javascript">

$(document).ready(function(){

$("#prompt-btn").click(function(event) {

var keyword = window.prompt("請輸入一個(gè)詞","我是孫漂亮");

        if (keyword!=null && keyword!=""){

            window.alert("蕾好 " + keyword + "!");

        }

});


$("#confirm-btn").click(function(event) {

var res = window.confirm("你確認(rèn)了解confirm這個(gè)函數(shù)?");

        if(res){

            window.alert("OK");

        }else{

            window.alert("確認(rèn)消息框confirm(),方法的返回值為 true 或 false");

        }

});


$("#alert-btn").click(function(event) {

window.alert("警告消息框alert()");

});

});

</script>

</body>

</html>

JS對話框函數(shù)alert(),confirm(),prompt()

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI