使用bootstrap日历控件问题记录
1、报错信息
使用bootstrap日历控件,图片和箭头出不来,且js报错如下:
http://localhost:8080/fonts/glyphicons-halflings-regular.woff2 net::ERR_ABORTED
2、报错原因是:
在bootstrap.min.css中有对如下字体文件的引用:
@font-face{
font-family:’Glyphicons Halflings’;
src:url(../fonts/glyphicons-halflings-regular.eot);
src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format(‘embedded-opentype’),
url(../fonts/glyphicons-halflings-regular.woff2) format(‘woff2’),
url(../fonts/glyphicons-halflings-regular.woff) format(‘woff’),
url(../fonts/glyphicons-halflings-regular.ttf) format(‘truetype’),
url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format(‘svg’)}
资料:http://www.runoob.com/bootstrap/bootstrap-glyphicons.html
3、解决方案
去bootstrap官网下载源码,把字体文件拷贝到项目即可。官网下载路径:http://v3.bootcss.com/getting-started/#download
如下图: