<!doctype html>
<html>
<head>
<title>Canvas test</title>
</head>
<body>
<script type="text/javascript">
c = getElementById('canvas');
ctx = c.getContext("2d")'
ctx.fillRect(10,10,10,10);
</script>
<canvas id="canvas" height ="100" width = "100"></canvas>
</body>
</html>
我在 Chrome 和 IE 9 上试过这个,但它们都没有显示任何东西。你知道为什么这不起作用吗?
这可能是一些愚蠢的事情,我的朋友要求我发布这个,因为他懒得注册,但我自己无法弄清楚。