(JavaScript)- alert, confirm, prompt 的用法 — 學習筆記 ( 1 )
(JavaScript)- alert, confirm, prompt 的用法 — 學習筆記 ( 1 )
alert, confirm, prompt 的用法。
一、使用方法
<html>
<head>
<script>
要把函式打在這個裡面!
</script>
</head>
<body>
<script>
要把函式打在這個裡面!
</script>
</body>
</html>
二、函式介紹
1. 【alert】
跳出一個視窗,只會顯示「確定」
2. 【confirm】
跳出一個視窗,會出現「確定」和「取消」
confirm ( "Want to go to Disneyland?" );
PS:( 補充 ) 想要按OK時,直接連接到另外一個網站的方法
if ( confirm ( "Want to go to Disneyland?" ) )
document.location.href = " https://spimet.com ";
3. 【prompt】
會跳出一個視窗,讓 user 打字,可以拿來儲存 user 輸入的文字,作法如下
var username;
username = prompt ( "What's your name?" );
document.write ( "Hello " + username + "!" );
免責聲明:
1.本影像檔案皆從網上搜集轉載,不承擔任何技術及版權問題。
2.如有下載連結僅供寬頻測試研究用途,請下載後在24小時內刪除,請勿用於商業。
3.若侵犯了您的合法權益,請來信通知我們,我們會及時刪除,給您帶來的不便,深表歉意。