<table>
<tr>
<td>
<img id="img_big" width=300 height=300 src="" />
</td>
<td>
<img width=90 height=90 onclick="showImg('1.gif')" src="1.gif" /><p>
<img width=90 height=90 onclick="showImg('2.gif')" src="2.gif" /><p>
<img width=90 height=90 onclick="showImg('3.gif')" src="3.gif" /><p>
<img width=90 height=90 onclick="showImg('4.gif')" src="4.gif" /><p>
<img width=90 height=90 onclick="showImg('5.gif')" src="5.gif" /><p>
<img width=90 height=90 onclick="showImg('6.gif')" src="6.gif" /><p>
</td>
</tr>
</table>
<script>
function showImg(imgUrl) {
document.getElementById("img_big").src=imgUrl;
}
</script>
[此贴子已经被作者于2006-12-24 13:26:33编辑过]