解决方案 »

  1.   

    /transition to the "about us" page with a slideup transition
    $.mobile.changePage( "about/us.html", { transition: "slideup"} );//transition to the "search results" page, using data from a form with an ID of "search""   
    $.mobile.changePage( "searchresults.php", {
        type: "post",
        data: $("form#search").serialize()
    });//transition to the "confirm" page with a "pop" transition without tracking it in history   
    $.mobile.changePage( "../alerts/confirm.html", {
        transition: "pop",
        reverse: false,
        changeHash: false
    });你可以看下官方api http://api.jquerymobile.com/jQuery.mobile.changePage/
      

  2.   


    大神 在请教个问题 jquery mobile页面之间的 跳转 可以带动画 特效么 如果可以的话 怎么实现啊?