显示确认框

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