码迷,mamicode.com
首页 > 其他好文 > 详细

点击按钮 变换图片

时间:2014-08-12 16:44:54      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:http   java   io   ar   cti   html   amp   javascript   

<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>&nbsp;</p>
<p> <img src="yinghua.jpg" width="500" height="300" id="img" /> </p>
<p>
<input type="button" value="我要看桃花" onclick="changeImage();" />
</p>
</body>
</html>

点击按钮 变换图片,布布扣,bubuko.com

点击按钮 变换图片

标签:http   java   io   ar   cti   html   amp   javascript   

原文地址:http://www.cnblogs.com/moliwanzi/p/3907428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!