我的代码适用于除 IE10 之外的所有浏览器。我的意思是,它正在工作,但不显示图像。我在这里尝试了解决方案,但没有奏效 - IE 10 图像未显示
这是我的代码-
<!DOCTYPE html>
<html>
<head>
<META HTTP-EQUIV="content type" content="test/html;sharset=iso-8859-1">
<script>
function myfun() {
alert("you are here");
}
</script>
</head>
<body>
<img src="next.gif" alt="image not found" onclick="myfun()" />
<br/>NEXT
</body>
</html>