为什么点击按钮不会切换图片?
var imgs=[
'http://i2.hoopchina.com.cn/user/308/15960308/13383588090.jpg',
'http://img.article.pchome.net/00/44/23/20/pic_lib/wm/2.jpg',
'http://lcd.yesky.com/imagelist/2009/044/404q4y8g4m0p.jpg',
'http://lcd.yesky.com/imagelist/2009/044/cgro54wt2t2x.jpg'
];
var index=0;
var lens=imgs.length;
$('.btn').on('click',function () {
if ('prev'===$(this).data('control')) {
index=Math.max(0,--index);
}
else {
index=Math.min(lens-1,++index);
}
document.title=(index+1)+"/"+lens;
$("#picbox").attr('src',imgs[index]);
});