从 ie8 迁移到 ie9

发布于 2024-11-04 11:43:46 字数 62 浏览 1 评论 0原文

从 ie8 迁移到 ie9 时,应在应用程序中对 css、html、javascript、DOM 进行哪些更改

What changes should be made in an application while migrating from ie8 to ie9 regarding css,html, javascript,DOM

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

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

发布评论

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

评论(2

唠甜嗑 2024-11-11 11:43:46

符合 W3C 标准。就这样。

Internet Explorer 9 是 Microsoft 全面支持 Web 标准的方式。

在大多数情况下,您需要删除以前版本的 CSS、DOM hack。或者有条件地允许低于 9.0 的版本,以便以标准模式渲染页面。

现在您可以利用一些 CSS 3.0 和 HTML5 功能,但请记住,它们中的大多数都是工作草案,尚未获得 W3C 批准,并且其他导航器中的浏览器支持可能会有所不同。

如果您想了解更多信息,请查看此 MSDN 索引:

Compliance with W3C standards. That's all.

Internet Explorer 9 is Microsoft's way to full Web Standards' support.

In most of the cases, you'd remove previous versions' CSS, DOM hacks. Or conditionally allow them for versions lower than 9.0, in order to render your pages in standards mode.

Now you can take advantage of some CSS 3.0 and HTML5 features, but keep in mind that most of them are working draft, yet to be approved by W3C and browser support in other navigators can differ their expected behavior.

Check this MSDN index if you want to learn more:

_蜘蛛 2024-11-11 11:43:46

Microsoft 已经制作了一个工具,您可以将其添加到您的页面中,该工具将通知您可能影响您的网站的更改。

只需将以下 javascript 代码添加到任何其他脚本之前的 head 标记中,然后正常操作该网站,它就会生成一份报告,详细说明您应该修复的问题。

<script src="http://ie.microsoft.com/testdrive/HTML5/CompatInspector/inspector.js"></script>

要了解有关该工具的更多信息,请访问:

http ://blogs.msdn.com/b/ie/archive/2011/04/27/ie9-compat-inspector.aspx

Microsoft have produced a tool that you can add to your pages which will inform you about changes that may effect your web site.

Just add the following javascript code into your head tag before any othe scripts, then opperate the site as normal, it will then produce a report detailing things you should fix.

<script src="http://ie.microsoft.com/testdrive/HTML5/CompatInspector/inspector.js"></script>

To learn more about the tool goto:

http://blogs.msdn.com/b/ie/archive/2011/04/27/ie9-compat-inspector.aspx

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