WEB/JavaScript
[JavaScript] Message Box(alert, confirm, prompt)
developer of the night sky
2023. 10. 6. 14:14
π»λ©μμ§ λ°μ€π»
λ€λ₯Έ μΈμ΄μμλ λνμμ(Dialog Box)λΌκ³ νλ€.
1. alert
- void alert(message)
- μ¬μ©μμκ² λ©μμ§ μ λ¬νκΈ° μν΄ μ¬μ©νλ€.
<body>
<h1>λ©μμ§ λ°μ€</h1>
<form name="form1">
<input type="button" value="λ²νΌ1" name="btn1">
</form>
<script>
document.form1.btn1.onclick = m1;
function m1() {
alert('λ©μμ§ λ°μ€');
}
</script>
</body>
2. confirm
- boolean confirm(message)
- μ¬μ©μμκ² νμΈμ λ°μ κ·Έ κ²°κ³Όκ°μΌλ‘ μ§ννλ€.
<body>
<h1>λ©μμ§ λ°μ€</h1>
<form name="form1">
<input type="button" value="λ²νΌ2" name="btn2">
</form>
<script>
document.form1.btn2.onclick = m2;
function m2() {
var result = confirm('λ©μμ§ λ°μ€');
if(result) {
document.body.bgColor = 'blue';
}
}
</script>
</body>
3. prompt
- string prompt(message, value)
- μ¬μ©μμκ² κ°μ μ λ ₯λ°λλ€.
- λμμΈ λ°κΎΈκΈ°κ° μ΄λ €μμ μ μ¬μ©νμ§ μλλ€.
<body>
<h1>λ©μμ§ λ°μ€</h1>
<form name="form1">
<input type="button" value="λ²νΌ3" name="btn3">
</form>
<script>
document.form1.btn3.onclick = m3;
function m3() {
prompt('μ΄λ¦μ μ
λ ₯νμμ€.', '');
alert(name);
}
</script>
</body>