css3-mediaqueries.js ->如何包含来自谷歌代码?

发布于 2024-12-29 07:43:15 字数 421 浏览 0 评论 0原文

我在我的网站上使用来自谷歌代码的 HTML5Shiv。我像这样包含它......

<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>

我还需要包含 css3-mediauqeris.js,它也可以在谷歌代码上找到。 但是我只能找到 js 文件的下载链接,但找不到直接从谷歌代码加载它的实际链接。

http://code.google.com/p/css3-mediaqueries-js/

想法吗?

谢谢您的信息。

I'm using the the HTML5Shiv from google code on my site. I'm including it like this …

<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>

I also need to include css3-mediauqeris.js that is also available on google code.
However I can only find the download link for the js-file but can't find an actual link to directly load it from google-code.

http://code.google.com/p/css3-mediaqueries-js/

Any ideas?

Thank you for your info.

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

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

发布评论

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

评论(2

笑梦风尘 2025-01-05 07:43:15

使用这个:

<!--[if lt IE 9]>
    <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->

Use this:

<!--[if lt IE 9]>
    <script src="http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
<![endif]-->
漆黑的白昼 2025-01-05 07:43:15

此代码Google 的 Libraries API 并未正式支持,但您应该能够使用 code.google.com 上的可下载版本通过普通脚本标记包含最新版本(警告,这不是加载 JS 的最安全方法)。

<script src="http://css3-mediaqueries-js.googlecode.com/files/css3-mediaqueries.js"></script>

This code is not officially supported by Google for its Libraries API, but you should be able to include the most recent version via a vanilla script tag using the downloadable version from code.google.com (warning, not the safest way to load JS).

<script src="http://css3-mediaqueries-js.googlecode.com/files/css3-mediaqueries.js"></script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文