换一换js
时间:2014-08-12 18:54:14
收藏:0
阅读:451
(function(){
var tit = $("#changes"),
con = $("#wday>ul"),
page = con.length,
index = 0;
tit.click(function(){
if(index < page){
index++;
}else{
index = 0;
}
con.eq(index).show().siblings().hide();
});
})();
原文:http://www.cnblogs.com/www561cn/p/3907824.html
评论(0)