<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>变换图片</title>
<script type="text/javascript">
function changeImage(){
 var img = window.document.getElementById("img").src;
 if(img == "taohua.jpg"){
 window.document.getElementById("img").src = "yinghua.jpg";
 }else{
 window.document.getElementById("img").src = "taohua.jpg";
 }
}
</script>
</head>
<body>
<p> </p>
<p> <img src="yinghua.jpg" width="500" height="300" id="img" /> </p>
<p>
 <input type="button" value="我要看桃花" οnclick="changeImage();" />
</p>
</body>
</html>