hotkey.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <script src="assets/jquery/jquery-1.10.2.min.js"></script>
  5. <link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  6. <script src="assets/bootstrap/js/bootstrap.min.js"></script>
  7. <script src="assets/prettify/run_prettify.js"></script>
  8. <link href="assets/bootstrap-dialog/css/bootstrap-dialog.css" rel="stylesheet" type="text/css" />
  9. <script src="../js/bootstrap-dialog.js"></script>
  10. <meta charset="utf-8" />
  11. <title>BootstrapDialog examples</title>
  12. </head>
  13. <body style="padding-bottom: 100px;">
  14. <script>
  15. BootstrapDialog.show({
  16. buttons: [{
  17. label: 'Cancel',
  18. hotkey: 81,
  19. action: function(dialog){
  20. alert('Canceling...');
  21. }
  22. }, {
  23. label: 'Confirm',
  24. cssClass: 'btn-primary',
  25. hotkey: 13,
  26. action: function(dialog){
  27. alert('Confirming...');
  28. }
  29. }]
  30. });
  31. </script>
  32. </body>
  33. </html>