fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 错误、成功和信息的警告实例</title> <meta name="description" content="Example alerts on error success and information with bootstrap."> <link href="/jscss/bootstrap/v3/bootstrap.css" rel="stylesheet"> <style type="text/css"> body { padding: 50px; } </style> </head> <body> <div class="alert alert-error"> <a class="close" data-dismiss="alert">×</a> <strong>Error!</strong>This is a fatal error. </div> <div class="alert alert-success"> <a class="close" data-dismiss="alert">×</a> <strong>Success!</strong>You have successfully done it. </div> <div class="alert alert-info"> <a class="close" data-dismiss="alert">×</a> <strong>Info!</strong>Watch this, but you may forget. </div> <script src="/jscss/bootstrap/v3/jquery.js"></script> <script src="/jscss/bootstrap/v3/bootstrap-alert.js"></script> </body> </html>
运行结果