为啥我的swipeLeft 事件不起作用呀
$("#large_container").tap(function () {
$(this).hide();
}).swipeLeft(function () {
cid++;
if (cid > total) {
cid = total;
} else {
alert("bb");
loadImg(cid);
}
})
$("#large_container").tap(function () {
$(this).hide();
}).swipeLeft(function () {
cid++;
if (cid > total) {
cid = total;
} else {
alert("bb");
loadImg(cid);
}
})
2015-12-23
举报