can1 = document.getElementById("canvas1");
ctx1 = can1.getContext();
console.log(ctx1); //为什么输出的是null , 导致后面也报错Cannot read property ' ' of null
要看你用的是什么编码器,我用的是sublime text3是这样的:
ctx1=can1.getcontext
不要括号和分号。希望能帮到你。
单引号 不是双引号
我也是这个问题
ctx1 = can1.getContext("2d");