我在每个上面分层了 4 个画布,但是我希望能够单击一个按钮,链接的画布将出现在顶部。
http://jsfiddle.net/5g3Fe/显示了我目前所拥有的。我尝试将以下代码放入按钮单击功能中。但是这不起作用。
function canvasView1()
{
document.getElementById("canvas1").style.z-index="1";
document.getElementById("canvas2").style.z-index="0";
document.getElementById("canvas3").style.z-index="0";
document.getElementById("canvas4").style.z-index="0";
}
任何人都可以建议一种能够通过单击按钮获得特定画布的方法。
谢谢