http://www.w3cschool.cc/try/demo_source/bootstrap3-glyph-icons.htm
图片查询网址。
图片查询网址。
2015-05-25
发现div不需要alert-dismissable类也可以
<div class="alert alert-danger" role="alert">
<button class="close" type="button" data-dismiss="alert">&times;</button>
对不起,您刚才的操作失败</div>
<div class="alert alert-danger" role="alert">
<button class="close" type="button" data-dismiss="alert">&times;</button>
对不起,您刚才的操作失败</div>
2015-05-24
已采纳回答 / kyang
表单所在的父元素(一般是div)需要添加样式 .has-feedback ,这个样式是将父元素的position定义为relative;然后还需要在添加icon图标的<span>标签内添加 .form-control-feedback 这个样式,将它的position定义为absolute,这样,图片就能在表单的靠右位置显示出来。具体这两个样式内容是怎样的查找一下bootstrap.css文件就知道了。
2015-05-23