DXImageTransform.Microsoft.AlphaImageLoader 相对吗?
在 Internet Explorer 中使用 fancybox 时,ASP.Net MVC 会抛出疯狂的错误
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='fancybox/fancy_title_over.png',
sizingMethod='scale');
DXImageTransform.Microsoft.AlphaImageLoader
src 路径是否像所有其他 css 路径一样相对?
ASP.Net MVC is throwing errors like mad when using fancybox in Internet Explorer
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
src='fancybox/fancy_title_over.png',
sizingMethod='scale');
Are DXImageTransform.Microsoft.AlphaImageLoader
src paths relative like all other css paths?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在
src
的开头添加额外的/
:src='/fancybox/fancy_title_over.png'
如果没有工作中你可能需要使用绝对URL。
来源
You need to add an extra
/
at the beginning of yoursrc
:src='/fancybox/fancy_title_over.png'
If that doesn't work you may need to use an absolute URL.
Source
我完全删除了使用过滤器的 IE 部分,它极大地提高了负载并减少了每个页面渲染的响应时间。参考此
http://developer.yahoo.com/performance/rules.html#无过滤器
I removed completely IE section that uses filter, and it improved tremedously the load and reduced the response time on each page rendering. take a reference at this
http://developer.yahoo.com/performance/rules.html#no_filters