HTML
CSS
JavaScript
Vue
React
Python
PHP
Java
.Net
Java9手册
PHP手册
CSS3手册
jQuery手册
源代码
在线运行
<!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="bootstrap/twitter-bootstrap-v2/docs/assets/css/bootstrap.css.html" 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="bootstrap/twitter-bootstrap-v2/docs/assets/js/jquery.js.html"></script> <script src="bootstrap/twitter-bootstrap-v2/docs/assets/js/bootstrap-alert.js.html"></script> </body> </html>
动行结果