JS:
var layer1 = document.getElementById('layer1');
ctx1 = layer1.getContext('2d');
layer1.style.zIndex=z1; //it is not working in my case
CSS:
canvas#layer1 {
z-index: 3;}
如何访问这个外部 CSS,以及改变 z-index 的值。
我的错:
layer1.style.zIndex=cellValue; //不是 layer1.style.zIndex=z1; :)