我正在尝试使用 Javascript 通过悬停更改图片。我有一个缩略图图像,当用户将鼠标悬停在顶部时,大图会发生变化,具体取决于悬停在哪个缩略图上。
这是我使用的 HTML。
<img onmouseover="showT(0)" src="pictures/278 Edit 10-8-11 2312.jpg"
height="75" width="75" >
<a href="#" onmouseover="showT(0)">pic 1</a>
<a href="#" onmouseover="showT(1)">pic 2</a>
<a href="#" onmouseover="showT(2)">pic 3</a>
这是放在 header 中的 java 脚本。
<!-- onhover mouse for thumbNail -->
<script language="JavaScript" type="text/JavaScript">
function showT(q){
document.getElementById('ima').setAttribute('src','0'+q+'.jpg')
}
</script>