我刚刚完成了我的代码,但没有显示tick.gif它显示单词“tick”,上面有一个方框。此外,onmouseover功能也无效。
<!DOCTYPE html>
<html>
<head>
<title>Changeup test</title>
</head>
<body>
<img scr="tick.gif" alt="tick" onmouseover="this.scr='tick2.gif';
"onmouseout="this.gif='tick.gif';" />
</body>
</html>
答案 0 :(得分:3)
标签的source属性在您粘贴的代码中拼写错误。它需要是src。
<!DOCTYPE html>
<html>
<head>
<title>Changeup test</title>
</head>
<body>
<img src="tick.gif" alt="tick" onmouseover="this.src='tick2.gif'; "onmouseout="this.src='tick.gif';" />
</body>
</html>