JavaScript インタラクションprompt, confirmサンプル
環境
Windows10
Google Chrome 122.0.6261.129(Official Build) (64 ビット)
1.prompt
prompt 機能は2つの引数を受け入れます
result = prompt(title[, default]);
title
訪問者へ表示するテキストです。
default
任意の2つ目のパラメータで、入力フィールドの初期値です。
prompt の呼び出しはフィールドのテキスト、もしくは入力がキャンセルされた場合には null が返却されます。
let age = prompt('How old are you?', 74); alert(`You are ${age} years old!`); // You are 74 years old!
2.confirm
result = confirm(question);
confirm 関数は question と 2つのボタンをもつモーダルウィンドウを表示します。: OK と キャンセル
OK が押された場合の結果は true で、それ以外は false です。
使用例
let siBs = confirm("Are you the boss?"); alert( siBs ); // true OKが押された場合