1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| <!DOCTYPE html> <html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title> 警告框事件 </title> <link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="../bootstrap/css/bootstrap-theme.min.css"> <script type="text/javascript" src="../jquery-3.1.1.js"></script> <script type="text/javascript" src="../bootstrap/js/bootstrap.min.js"></script> </head>
<body> <div class="container"> <div class="alert alert-danger" role="alert" id="myAlert"> 危险!请注意 <button type="button" class="close" data-dismiss="alert" aria-label="关闭"> <span aria-hidden="true">×</span> </button> </div> </div> <script type="text/javascript"> $('#myAlert').on("close.bs.alert", function () { console.log("警告框的close.bs.alert"); }).on("closed.bs.alert", function () { console.log("警告框的closed.bs.alert"); }); </script> </body>
</html>
|