首页 > 代码库 > 样式文件跨域导致Respond.js插件在IE浏览器失效的问题
样式文件跨域导致Respond.js插件在IE浏览器失效的问题
Respond.js主页: https://github.com/scottjehl/Respond
Respond.js是为了解决IE6-IE8不支持响应式设计而编写的一个插件,可以实现css3的媒体查询,官方演示地址:https://rawgit.com/scottjehl/Respond/master/test/test.html
在Chrome、Firefox、IE浏览器测试官方给出的页面都是正常的,网页背景色会随着浏览器窗口的大小改变。可以看到该页面的样式文件和测试页面本身都是在同一个域名下面。而通常大中型网站一般都会把样式文件单独放在一个子域名下面,这种情况如果是单独的引用该插件是不起作用的。
官方给出的解决方案如下图:
例如:
网页的地址为: http://www.domain.com/index.html css文件地址为: http://static.domain.com/css/common.css Respond.js文件地址为: http://static.domain.com/js/Respond.js
将下载的压缩包下cross-domain文件夹中的两个文件:respond-proxy.html、 respond.proxy.gif 放置到 www.domain.com域名所在的文件夹下,文件路径假设为:
http://www.domain.com/respond/respond-proxy.html http://www.domain.com/respond/respond.proxy.gif
文件respond-proxy.html放在子域名所在文件夹下,文件路径假设为:
http://static.domain.com/html/respond-proxy.html
网页文件http://www.domain.com/index.html 的头部应该这样写:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Respond JS Test Page</title> <!--子域名的文件--> <link href="http://static.domain.com/css/common.css" rel="stylesheet"/> <script src="http://static.domain.com/js/Respond.js"></script> <link href="http://static.domain.com/html/respond-proxy.html" id="respond-proxy" rel="respond-proxy" /> <!--网页所在域名的文件--> <link href="http://www.domain.com/respond/respond.proxy.gif" id="respond-redirect" rel="respond-redirect" /> <script src="http://www.domain.com/respond/respond.proxy.js"></script> </head> <body> <p>网页内容</p> </body> </html>
窄屏情况下IE浏览器会出现0.5秒的闪屏现象,不过看起来不算不太明显。
何时IE全消灭,天下前端俱欢颜!
样式文件跨域导致Respond.js插件在IE浏览器失效的问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。