Html IE9 支持 HTML5 Canvas 标签

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/5016513/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-29 06:45:45  来源:igfitidea点击:

IE9 Support for HTML5 Canvas tag

htmlcanvasinternet-explorer-9

提问by Shiraz Bhaiji

I am trying to test out the canvas tag, I started with this code:

我正在尝试测试画布标签,我从以下代码开始:

<html>
 <canvas id="example" width="200" height="200">
    This text is displayed if your browser does not support HTML5 Canvas.
 </canvas>
</html>

In IE8 I get the message:

在 IE8 中,我收到消息:

 This text is displayed if your browser does not support HTML5 Canvas.

I then installed IE9 but get the same error. Does IE9 support HTML5 canvas or not?

然后我安装了 IE9 但得到同样的错误。IE9 是否支持 HTML5 画布?

Edit

编辑

The problem was that I was missing the doctype tag

问题是我缺少 doctype 标签

<!DOCTYPE html>

回答by gor

IE9 does support canvas. Hereis an exmaple.

IE9 确实支持画布。是一个例子。

If canvas does not work in your browser, press F12 (open developer tools), and make sure, that IE is not in compatibility mode.

如果画布在您的浏览器中不起作用,请按 F12(打开开发人员工具),并确保 IE 未处于兼容模式。

回答by Ajay Bhosale

Extending the answer from gor, make sure that you have added following metadata.

从 gor扩展答案,确保您已添加以下元数据。

<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>

This will force IE to use the latest mode as possible and users don't need to change the compatibility mode from developer tools.

这将强制 IE 尽可能使用最新模式,用户无需从开发人员工具更改兼容模式。

回答by Ajay Bhosale

As far as I'm aware HTML 5 Canvas support is under development for IE9, unless it is already in the RC.. Perhaps not the best website to find out you could browse to html5testwith IE9 to see if it supports certain HTML 5 tags or not. As an alternative you can browse to caniusewhich should also give you alot of info regarding the HTML5 support of browsers .

据我所知,IE9 的 HTML 5 Canvas 支持正在开发中,除非它已经在 RC 中。也许这不是最好的网站,您可以使用 IE9浏览html5test以查看它是否支持某些 HTML 5 标签或不。作为替代方案,您可以浏览caniuse,它也应该为您提供大量有关浏览器 HTML5 支持的信息。

回答by Steve

Just an add on to this there's a little script I've been using called excanvasthat has allowed me to run canvas animations (slowly) on IE8, haven't tried it on 7 and 6 but it's worth a look.

只是对此的补充,我一直在使用一个名为excanvas的小脚本,它允许我在 IE8 上运行画布动画(缓慢),还没有在 7 和 6 上尝试过,但值得一看。

回答by Ken Griffith

If you install the Google Chrome Frame Plugin [http://www.google.com/chromeframe][1], it upgrades IE6-9 to run the webkit rendering engine - along with HTML5/CSS3 support.

如果您安装 Google Chrome Frame Plugin [http://www.google.com/chromeframe][1],它会升级 IE6-9 以运行 webkit 渲染引擎 - 以及 HTML5/CSS3 支持。