Bootstrap glyphicons公文包未在IE浏览器中显示

Vic*_*cky 5 html css internet-explorer twitter-bootstrap-3

这是bootstrap图标,Bootstrap v3.3.4的html代码

 <span class="glyphicon glyphicon-briefcase" aria-hidden="true"></span>
Run Code Online (Sandbox Code Playgroud)

这个HTML代码适用于所有浏览器,我可以正确看到公文包图标.但是在MVC Platfrom开发后使用相同的代码我无法在IE和Safari(Windows)上看到公文包图标.这个问题与其他几个图标也一样content = "\e136",content = "\e142"

在MVC中开发代码:

在此输入图像描述

简单的HTML代码

在此输入图像描述

she*_*dri 0

您需要包括

< !--[if lt IE 9] >
< script src="html5shiv.js">
< script src="respond.min.js">
< ![endif]-- >
Run Code Online (Sandbox Code Playgroud)

或者

<link rel="stylesheet" media="screen" href="/css/glyphicons/glyphicons.min.css" >
Run Code Online (Sandbox Code Playgroud)

或者

<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
Run Code Online (Sandbox Code Playgroud)