为什么不行啊~求大神解答
<script type="text/javascript">
$(function(){
$("#btntest").bind("click",function(){
$("div").toggle(
function(){
$(this).css("background-color","red");
},
function(){
$(this).css("background-color","blue");
},
function(){
$(this).css("background-color","green");
})
})
});
</script>