用于 CSS3 媒体查询的 Respond.js

发布于 2024-12-09 13:05:49 字数 470 浏览 0 评论 0原文

我正在尝试在旧版 IE 上使用 Respond.js 进行 CSS3 媒体查询 https://github.com/scottjehl/Respond

我收到一些 Javascript 中的访问被拒绝消息。

我尝试过类似 http://scottjehl.github.com/Respond/cross-domain/example.html

我认为需要完成一些跨域设置......但我不确定为什么需要这样做。我现在只需要在本地测试所有内容。 所以我在本地拥有所有文件...请帮我解决这个问题。

对于类似的易于使用的库的任何其他建议也很好。

I am trying to use Respond.js for CSS3 Media Queries on older IE versions
https://github.com/scottjehl/Respond

I am getting some Access denied message in Javascript.

I have tried similar to
http://scottjehl.github.com/Respond/cross-domain/example.html

I think there are some cross-domain setup to be done...But I am not sure why that is needed. I just need to test everything locally as of now.
So I have all the files locally...Please help me fix this issue.

Any other suggestions for similar easy-to-use library would also be fine..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罪歌 2024-12-16 13:05:49

您声明您正在本地硬盘上运行测试。

根据 Repond.js 文档,您将遇到以下问题:

由于安全限制,某些浏览器可能不允许此脚本在 file:// url 上运行(因为它使用 xmlHttpRequest)。在网络服务器上运行它。

因此,如果您只是从 C: 驱动器加载页面,则需要安装本地主机 Web 服务器才能使其正常工作。

此外,即使您在 Web 服务器上运行,如果 respond.js 文件位于与主页不同的域(或子域)上,那么您将需要进行一些跨域设置。

同样,这是有记录的;请参阅文档中标题为“CDN/X-Domain 设置”的部分。它包括示例,并引用源代码中提供的示例文件。

you state that you're running the test on your local hard disk.

According to the Repond.js documentation, you will have issues with this:

Due to security restrictions, some browsers may not allow this script to work on file:// urls (because it uses xmlHttpRequest). Run it on a web server.

So if you're just loading pages from your C: drive, you will need to install a localhost web server to get it working.

Additionally, even if you are running on a web server, if the respond.js file is on a different domain (or subdomain) from your main page, then you will need to do some cross-domain setup.

Again, this is documented; see the section in the documentation entitled "CDN/X-Domain Setup". It includes examples, and references an example file available with the source.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文