Bootstrap 警报类
创建一个 wrapper <div>,并添加一个 .alert 类和四个上下文类之一(例如,.alert-success、.alert-info、.alert-warning、.alert-danger),即可添加一个基本警报。
你可以尝试运行以下代码来创建一个警报类 −
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "alert alert-success"> This is Success! </div> <div class = "alert alert-info"> This is Info! </div> <div class = "alert alert-warning"> This is Warning! </div> <div class = "alert alert-danger"> This is Error! </div> </body> </html>
广告