摘要: 点击上下按钮进行图片轮播的效果 1 <script type="text/javascript"> 2 $(document).ready(function(){ 3 var size = $("#con ul li").length; 4 var index = 0; 5 $("#con ul li").not(":first").hide(); 6 $("#prev").click(function(){ 7 if(index == 0){ 8 index = s... 阅读全文
posted @ 2012-05-04 13:35 migo_ 阅读(160) 评论(0) 推荐(0) 编辑