如果我已经在使用 Modernizr,我还需要 HTML5 Shiv 吗?

发布于 2024-11-27 06:00:19 字数 154 浏览 1 评论 0原文

1) 如果我已经在使用 Modernizr,我还需要 HTML5 Shiv 来启用 IE 的 HTML5 标签支持吗?

2) HTML5 Shiv 仅适用于 IE,还是适用于所有不支持本机 HTML 5 的浏览器?喜欢旧版本的 Firefox、Safari、Chrome 等?

1) If I'm already using Modernizr, will I then even need HTML5 Shiv to enable HTML5 tag support for IE?

2) Is HTML5 Shiv only for IE, or for all browser who don't have native HTML 5 support? Like older versions of Firefox, Safari, Chrome, etc?

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

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

发布评论

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

评论(1

逆夏时光 2024-12-04 06:00:19

1) 如果我已经在使用 Modernizer,那么我还需要 HTML5 Shiv
启用 IE 的 HTML5 标签支持。

您不需要单独包含 html5shiv,因为 Modernizr 包含它:

从 Modernizr 1.5 开始,此脚本与
流行的 html5shim/html5shiv 库。

http://www.modernizr.com/docs/#html5inie


2) HTML5 Shiv 仅适用于 IE 或所有不具备该功能的浏览器
原生 HTML 5 支持。像旧版本的 Firefox、Safari、Chrome
等等

它仅适用于 Internet Explorer。

其他浏览器的旧版本不需要它: http://caniuse.com/html5semantic

以及推荐的片段包括它是:

<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

它只能在 IE 9 以下运行。

1) If I'm already using Modernizer then even will I need HTML5 Shiv to
enable HTML5 tag supports for IE.

You don't need to separately include html5shiv, because Modernizr includes it:

As of Modernizr 1.5, this script is identical to what is used in the
popular html5shim/html5shiv library.

http://www.modernizr.com/docs/#html5inie


2) and is HTML5 Shiv only for IE or for all browser who don't have
native HTML 5 support. like older version of Firefox, Safari, Chrome
etc.

It's only for Internet Explorer.

Older versions of other browsers don't need it: http://caniuse.com/html5semantic

And the recommended snippet to include it is:

<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

Which will only ever run for IE less than 9.

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