问答详情
源自:2-2 画棋盘

为什么我的不能画图呢

var chess = document.getElementById('chess');

var context = chess.getContext('2d');


context.stroke();

context.moveTo(0,0);

context.lineTo(450,450);


提问者:iejge 2016-05-06 17:48

个回答

  • 不再热情似火
    2016-05-06 22:34:37

    stroke()放在后面,当你的路线设计好之后,在进行绘画,而不是一出来就绘画