4-4 警告框--JavaScript触发警告框
本节编程练习不计算学习进度,请电脑登录imooc.com操作

警告框--JavaScript触发警告框

除了通过自定义data-dismiss="alert"属性来触发警告框关闭之外,还可以通过JavaScript方法。只需要在关闭按钮上绑定一个事件。如下所示:

html代码:

<div class="alert alert-warning" role="alert" id="myAlert">
    <h4>谨防被骗</h4>
    <p>请确认您转账的信息是你的亲朋好友,不要轻意相信不认识的人...</p>
    <button type="button"  class="btn btn-danger" id="close">关闭</button>
</div>

通过下面的JavaScript代码来触发:

$(function(){
    $("#close").on("click",function(){
        $(this).alert("close");
    });
});

运行效果如下:

任务

我来试试:补充右侧JS代码完成使用JS关闭警告框的功能。

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title> </title>
  6. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
  7. </head>
  8. <body>
  9. <div class="alert alert-warning" role="alert" id="myAlert">
  10. <h4>谨防被骗</h4>
  11. <p>请确认您转账的信息是你的亲朋好友,不要轻意相信不认识的人...</p>
  12. <button type="button" class="btnbtn-danger" id="close">关闭</button>
  13. </div>
  14. <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
  15. <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
  16. <script>
  17. ???
  18. </script>
  19. </body>
  20. </html>
下一节