qq_呆瓜_fkoIZ8
var chess=document.getElementById("chess");
var context=chess.getContext("2d");
for(var i=0;i<15;i++){
context.beginPath();
context.moveTo(15+i*30,15);
context.lineTo(15+i*30,435);
context.closePath();
context.beginPath();
context.moveTo(15,15+i*30);
context.lineTo(435,15+i*30);
context.closePath();
context.stroke();
}
不知,可否解决了你的问题?