我得到一个错误消息说,jQuery找不到glyphicons-halflings-regular.woff2的路径。当成功的AJAX请求的函数运行时,错误显示。在那个函数中,我插入了一个超链接,它使用了来自Twitter Bootstrap的glyphicon。
解决方法
使用IIS我在Web.config文件中修复它,在< system.webServer> ;:中添加以下内容:
<staticContent> <remove fileExtension=".woff" /> <remove fileExtension=".woff2" /> <mimeMap fileExtension=".woff" mimeType="application/font-woff" /> <mimeMap fileExtension=".woff2" mimeType="application/font-woff" /> </staticContent>
注意,我删除的扩展名,如果它们已经存在。