一个简单的画布超出我的想法

时间:2013-02-01 15:41:59

标签: javascript html html5-canvas

    <html>
<head>
<script>
  function draw() {
    var canvas = document.getElementById('draw');
    if (canvas.getContext) {
      var ctx = canvas.getContext('2d');
      for (i=0,i<=700,i+=10){
      ctx.beginPath();
      ctx.moveTo(i,700-i);
      ctx.lineTo(700-i,i);
      ctx.stroke();
      }
    } else {
      document.write("Hey idiot, whhich idiot browser you are using? No IE clan here!");
    }
  }
</script> 
</head>
<body onload="draw();"> 
<canvas id="draw" width="700" height="700"></canvas>
</body></html>

有谁能告诉我这个简单的代码无法解决的问题是什么? .............................

1 个答案:

答案 0 :(得分:4)

因为你的for循环使用逗号,所以它需要分号:

for (i=0;i<=700;i+=10){

这也不行:

  

document.write(&#34;嘿白痴,你正在使用哪种白痴浏览器?这里没有IE家族!&#34;);

不要侮辱你的用户!