我正在尝试测试画布标签,我从以下代码开始:
<html>
<canvas id="example" width="200" height="200">
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
</html>
在 IE8 中,我收到以下消息:
This text is displayed if your browser does not support HTML5 Canvas.
然后我安装了 IE9 但得到了同样的错误。IE9 是否支持 HTML5 画布?
编辑
问题是我缺少 doctype 标签
<!DOCTYPE html>