所以我有这个代码,应该显示一个保龄球男子的简单图像。 问题?他没有出现。 这是代码:
<script>
function initCanvas()
{
var ctx = document.getElementById('my_canvas').getContext('2d');
var bowling1 = new Image();
bowling1.src = 'img/bowling1.png';
bowling1.addEventListener("load", function(){ctx.drawImage(bowling1,0,0)}, false)
}
window.addEventListener('load', function(event) {
initCanvas();
});
</script>
</head>
<body>
<canvas id="my_canvas" width="500" height="300"></canvas>
</body>
这是我的代码和&#34; bowling1&#34; pic在。 Picture of the folder (testHolder.html is the file my code runs on)