我正在使用 excanvas 绘制图形形状,下面是我的代码。在调用该.getContext("2d")
方法时,它会'undefined'
在 IE7 和 IE8 中显示异常。
JS
var script = document.createElement('script');
script.src = 'http://canvas-text.googlecode.com/svn-history/r48/trunk/excanvas.js';
script.type = 'text/javascript';
var c = document.getElementById("myCanvas");
context = c.getContext("2d");// getContext is undefined
html
<canvas id='myCanvas'></canvas>
我做错了什么..有人可以帮忙吗?