刚毅87
function drawDigit (x,y,num,ctt) {
ctt.fillStyle = 'rgb(0,105,153)';
for (var i = 0;i < digit[num].length;i++) {
for (var j = 0;j < digit[num][i].length;j++) {
if (digit[num][i][j] == 1) {
ctt.beginPath();
ctt.arc(x + (randius + 1) * j * 2 + randius + 1,y + (randius + 1) * i * 2 + randius + 1,randius,0,Math.PI * 2,false);
ctt.closePath();
ctt.fill();
}
}
}
}这是我写的,没发现有什么区别,,是不是你标点写错了.