level 1
无知牧雨
楼主
是背景颜色,不是图片,现在只做到跟换一轮,不能循环
<script>
$(document).ready(function(e) {
var i=0;
$("div").click(function(){
i++;
$(this).toggleClass('c'+parseInt(i));
});
});
</script>
<style>
div{ width:300px; height:100px; background:#000;}
div.c1{ background:#F00;}
div.c2{ background:#FC0;}
div.c3{ background:#FF0;}
div.c4{ background:#0F0;}
div.c5{ background:#0C0;}
div.c6{ background:#00F;}
div.c7{ background:#90F;}
</style>
<div></div>
2016年07月23日 07点07分
1
<script>
$(document).ready(function(e) {
var i=0;
$("div").click(function(){
i++;
$(this).toggleClass('c'+parseInt(i));
});
});
</script>
<style>
div{ width:300px; height:100px; background:#000;}
div.c1{ background:#F00;}
div.c2{ background:#FC0;}
div.c3{ background:#FF0;}
div.c4{ background:#0F0;}
div.c5{ background:#0C0;}
div.c6{ background:#00F;}
div.c7{ background:#90F;}
</style>
<div></div>