bootstrap字体图标不显示是什么原因?

bootstrap字体图标不显示是什么原因?下面本篇文章给大家介绍一下Bootstrap字体图标不显示问题。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。

Bootstrap字体图标不显示问题

问题:

bootstrap使用字体图标时只显示一个框,不显示图标。

问题分析:

出现的原因是:bootstrap.css文件没有正确关联上字体文件glyphicons-halflings-regular.eot。

查看bootstrap.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');
}`

注意当中的url

解决办法:

把从网上下载的整个bootstrap丢到eclipse中。如图

1.png-600

在jsp页面中的引用:

<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>bootStrap表单</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
<link rel="stylesheet" href="js/bootstrap-3.3.7-dist/css/bootstrap.css">
<script type="text/javascript" src="js/bootstrap-3.3.7-dist/js/bootstrap.js"></script>
</head>

注意:jQuery的引用要放在bootstrap引用前,否则会报Uncaught Error: Bootstrap's JavaScript requires jQuery的错误

更多web前端知识,请查阅 HTML中文网 !!

以上就是bootstrap字体图标不显示是什么原因?的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » Bootstrap 教程