期望的行爲是當文檔負載,畫布繪製圖像0被點擊無形的div時,畫布繪製圖像1中,在鼠標鬆開或鼠標移開,它將恢復到圖像0改變畫布圖像
我離開了CSS,因爲我得到了這個工作......只需要知道我在做什麼錯誤的JavaScript函數。現在它不顯示任何東西,甚至不顯示第一張圖像。
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
function imgChange(imagePath)
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
var img=new Image();
img.onload = function(){
ctx.drawImage(img,0,0);
};
img.src=imagePath; <!-- I THINK THIS IS WRONG?
</script>
</head>
<body>
<canvas id="myCanvas" width="506" height="319"
onload="imgChange('0.gif')" style="border:1px solid #c3c3c3;">
Your browser does not support the canvas element.
</canvas>
<div id="button1" onMouseDown="imgChange('1.gif')" onMouseUp="imgChange('0.gif')" onMouseOut="imgChange('0.gif')"></div>
<div id="key2"></div>
</body>
</html>
第一個也不存在了! ;) – Mohsen