iejge
2016-05-06 17:50
var chess = document.getElementById('chess');
var context = chess.getContext('2d');
context.stroke();
context.moveTo(0,0);
context.lineTo(450,450);
我也出现这种问题,id检查了也没有出错
报错的意思是你的 chess 对象不存在,你检查一下,是不是 id 打错了。
JS实现人机大战之五子棋(UI篇)
35650 学习 · 136 问题
相似问题