滑动导航无法正常工作

时间:2013-02-27 15:27:27

标签: javascript html ios jquery-mobile

不确定它是否与我编写它的方式有关,但是当我尝试使用jquery手机在刷卡时更改页面功能时,它不允许我滑动到特定页面。我希望用户能够轻扫并进入主页,无论他们身在何处。这是我拥有的。

<script>
 $( document ).bind( "swiperight", page, function() {
    $.mobile.changePage( "#home", { 
    transition: "slide", 
    reverse: true } );
    });

</script>

Javascript不是我最强的语言,但我知道这应该有用。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

也许你需要做

$(document).swiperight(function() {
    $.mobile.changePage("#home", { 
        transition: "slide", 
        reverse: true
    });
});

$('body').swiperight(function() {
    $.mobile.changePage("#home", { 
        transition: "slide", 
        reverse: true
    });
});

Here is a working jsFiddle(不是我)你可以参考。