JavaScript 共有三种弹出框:警告框、确认框和提示框。
如果您想确保信息传达给用户,通常会使用警报框。
当弹出警告框时,用户必须单击"OK" 才能继续。
window.alert("
sometext");
这个window.alert()
方法可以不带 window 前缀编写。
如果您希望用户验证或接受某些内容,通常会使用确认框。
当弹出确认框时,用户必须单击"OK" 或"Cancel" 才能继续。
如果用户单击"OK",则该框返回真的。如果用户单击"Cancel",则该框返回错误的。
window.confirm("
sometext");
这个window.confirm()
方法可以不带 window 前缀编写。
if (confirm("Press a button!")) {
txt = "You pressed OK!";
} else {
txt = "You pressed Cancel!";
}
亲自试一试 »
如果您希望用户在进入页面之前输入一个值,通常会使用提示框。
当弹出提示框时,用户输入输入值后必须单击"OK"或"Cancel"才能继续。
如果用户单击"OK",该框将返回输入值。如果用户单击"Cancel",该框将返回 null。
window.prompt("
sometext","
defaultText");
这个window.prompt()
方法可以不带 window 前缀编写。
let person = prompt("Please enter your name", "Harry Potter");
let text;
if (person == null || person == "") {
text = "User cancelled the prompt.";
} else {
text = "Hello " + person + "! How are you today?";
}
亲自试一试 »
要在弹出框中显示换行符,请使用反斜杠后跟字符 n。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!