在页面上使用bootstrap的glyphicon图标:
<span class="glyphicon glyphicon-edit"></span>
引用本地的bootstrap样式文件
<link type="text/css" rel="stylesheet" href="../bootstrapCss/bootstrap.min.css">
1.在你的css文件夹的同级目录检查是否有fonts文件夹,fonts文件夹中应该放入bootstrap下载包中的fonts文件夹下的4个有关字体图标文件:
glyphicons-halflings-regular.woff
glyphicons-halflings-regular.ttf
glyphicons-halflings-regular.svg
glyphicons-halflings-regular.eot
2.引用本地的css文件,会引起跨域问题,也可以使用官方的css文件链接地址:
<link type="text/css" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">