首页 > 代码库 > Javascript点击更换背景
Javascript点击更换背景
<script type="text/javascript"> //第一种方法,使用数组 var i=0; function t1(){ var arr=[‘url(img/bgf.jpg)‘,‘url(img/bg.jpg)‘,‘url(img/4f.jpg)‘,‘url(img/5f.jpg)‘,‘url(img/6f.jpg)‘]; var bottom = document.getElementById(‘zhengti‘); if(i==arr.length){ i=0; } bottom.style.backgroundImage = (arr[i++]); } /*第二种方法,if...else判断 var i = 0; function t1(){ var bottom = document.getElementById(‘zhengti‘); if(i++%2==0){ bottom.style.backgroundImage = "url(img/bgf.jpg)"; } else{ bottom.style.backgroundImage = "url(img/bg.jpg)"; } } */ </script> </head> <body id="zhengti"> <div id="bottom"> <input type="button" value="http://www.mamicode.com/更换背景" onclick="t1();" /> </div> </body> </html>
本文出自 “hbbdgyb” 博客,请务必保留此出处http://hbbdgyb.blog.51cto.com/5031387/1844851
Javascript点击更换背景
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。