代码之家  ›  专栏  ›  技术社区  ›  MikeMcClatchie

引导确认框警报不起作用

  •  0
  • MikeMcClatchie  · 技术社区  · 8 年前
    <head>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js">
        src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js">
      </script>
    </head>
    
    <script>
    function confirm() {
    BootstrapDialog.confirm('Are you sure you want to do this?');}
    </script>
    
    <input type="button" value="confirm" onclick="confirm()" />
    

    你好我正在尝试生成一个引导确认警报,该警报由按钮输入激活。我完全是一个初学者,所以我可能缺少一些基本的/明显的东西……非常感谢任何帮助。迈克。

    1 回复  |  直到 8 年前
        1
  •  0
  •   dippas    8 年前

    一些事情:

    • 你的 script 标签不正确,需要修复
    • 您很可能需要 bootstrap.css
    • 你需要添加 bootstrap-dialog.js

     function confirm() {
       BootstrapDialog.confirm('Are you sure you want to do this?');
     }
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
    <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap3-dialog/1.35.1/js/bootstrap-dialog.min.js"></script>
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
    
    <input type="button" value="confirm" onclick="confirm()" />