jQuery 函数(独立工作):
$("#firstpage").live('pageinit', function (evt) {
$("#firstpage").bind("swipeleft", function (e) {
alert ("you swiped left!");
});
});
jQuery 移动链接(也可以单独使用):
<a href="#secondpage" data-transition="slide">GO TO PAGE 2</a>
那么如何将两者结合起来呢?谢谢!