为什么我不能在HTML5画布中绘制矩形?

dan*_*007 1 javascript canvas html5-canvas

我试图在我的HTML5画布中绘制一个红色矩形.这是我的HTML.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset=utf-8>
    <title>My Canvas Experiment</title>
    <link rel="stylesheet" type="text/css" href="main.css" />
    <script src="plotting.js"></script>
    <!--[if IE]>
      <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js">
      </script>
    <![endif]-->
  </head>
  <body>
    <canvas id="plot"></canvas>
  </body>
</html>
Run Code Online (Sandbox Code Playgroud)

这是plotting.js:

document.onload = function() {
    var c = document.getElementById("plot");
    var ctx = c.getContext("2d");
    ctx.fillStyle("#f00");
    ctx.fillRect(0, 0, 175, 40);
}
Run Code Online (Sandbox Code Playgroud)

这是main.css:

body { margin:100px; }

article, aside, figure, footer, header, hgroup, menu, nav, section { 
    display:block;
}

#plot {
    width: 500px;
    height: 400px;
}
Run Code Online (Sandbox Code Playgroud)

为什么页面空白?Chrome Web Developer Console不会发出任何错误.

ste*_*ewe 7

更换:

ctx.fillStyle("#f00");

有:

ctx.fillStyle="#f00";


pai*_*lee 5

使用window.onload而不是document.onload,(保持@ stewe的建议).