JavaScript 弹出框

JavaScript 有三种类型的弹出框:警告框、确认框和提示框。


警告框

如果要确保信息传递给用户,通常会使用警告框。

当警告框弹出时,用户将需要单击“确定”来继续。

语法
  1. window.alert("sometext");

window.alert() 方法可以不带 window 前缀来写。

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript 警告框</h1>
  5. <button onclick="myFunction()">试一试</button>
  6. <script>
  7. function myFunction() {
  8. alert("我是一个警告框!");
  9. }
  10. </script>
  11. </body>
  12. </html>

确认框

如果您希望用户验证或接受某个东西,则通常使用“确认”框。

当确认框弹出时,用户将不得不单击“确定”或“取消”来继续进行。

如果用户单击“确定”,该框返回 true。如果用户单击“取消”,该框返回 false

语法
  1. window.confirm("sometext");

window.confirm() 方法可以不带 window 前缀来编写。

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript 确认框</h1>
  5. <button onclick="myFunction()">试一试</button>
  6. <p id="demo">
  7. <script>
  8. function myFunction() {
  9. var txt;
  10. if (confirm("是否按按钮!")) {
  11. txt = "您按了确定";
  12. } else {
  13. txt = "您按了取消";
  14. }
  15. document.getElementById("demo").innerHTML = txt;
  16. }
  17. </script>
  18. </body>
  19. </html>

提示框

如果您希望用户在进入页面前输入值,通常会使用提示框。

当提示框弹出时,用户将不得不输入值后单击“确定”或点击“取消”来继续进行。

如果用户单击“确定”,该框返回输入值。如果用户单击“取消”,该框返回 NULL

语法
  1. window.prompt("sometext","defaultText");

window.prompt() 方法可以不带 window 前缀来编写。

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript Prompt</h1>
  5. <button onclick="myFunction()">试一试</button>
  6. <p id="demo">
  7. <script>
  8. function myFunction() {
  9. var txt;
  10. var person = prompt("请输入您的名字:", "哈利波特");
  11. if (person == null || person == "") {
  12. txt = "用户取消输入";
  13. } else {
  14. txt = "你好," + person + "!今天过得好吗?";
  15. }
  16. document.getElementById("demo").innerHTML = txt;
  17. }
  18. </script>
  19. </body>
  20. </html>

换行

如需在弹出框中显示换行,请在反斜杠后面加一个字符 n

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <h1>JavaScript</h1>
  5. <p>在警告框中换行。</p>
  6. <button onclick="alert('Hello\nHow are you?')">试一试</button>
  7. </body>
  8. </html>

分类导航