html5 & javascriptmvc ie问题

发布于 2024-10-10 00:30:14 字数 514 浏览 2 评论 0原文

为什么使用 javascriptmvc 开发 html5 应用程序时在 ie6 中出现错误?

当我在 header 中包含以下内容时,就会出现问题:

<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="js/libs/modernizr-1.6.min.js"></script>

然后在关闭 body 之前:

<script type='text/javascript'
    src='../steal/steal.js?appname,development'>
</script>

当我删除 html5shiv 时,应用程序可以工作,但无法设置 html5 元素的样式。

Why do I get errors in ie6 when developing an html5 app with javascriptmvc?

The problem appears when I include in the header:

<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="js/libs/modernizr-1.6.min.js"></script>

And then before closing body:

<script type='text/javascript'
    src='../steal/steal.js?appname,development'>
</script>

When I remove the html5shiv the app works but then it's impossible to style html5 elements.

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

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

发布评论

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

评论(1

随波逐流 2024-10-17 00:30:14

如果您使用 Modernizr,则不需要 html5shiv,因为 Modernizr 本身包含相同的功能。

引用自 Modernizr 主页:

最后,Modernizr 还添加了对 HTML5 元素样式和打印的支持。这允许您使用更多语义、前瞻性的元素,例如

,而无需不必担心它们无法在 Internet Explorer 中运行。

You shouldn't need the html5shiv if you're using Modernizr, as Modernizr includes the same functionality itself.

Quote from the Modernizr homepage:

Lastly, Modernizr also adds support for styling and printing HTML5 elements. This allows you to use more semantic, forward-looking elements such as <section>, <header> and <dialog> without having to worry about them not working in Internet Explorer.

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