在触摸时滑动以切换课程?

时间:2013-04-05 07:15:29

标签: jquery jquery-mobile

是否有可能使用jquery mobile或jquery进行滑动事件以更改类的内容?

$(document).ready(function() {
    $("body").swiperight(function(event){
        $('.main-content').toggleClass('.swiped');
    });
});

你会使用jquery或jquery mobile来做这类事吗?

1 个答案:

答案 0 :(得分:3)

$('.main-content').toggleClass('.swiped');
//                              ^ not dot please!

应该是:

$('.main-content').toggleClass('swiped');
顺便说一下,我认为没有插件,jQuery mobile只提供这个API:

$("body").on('swiperight', function(){});