Jquery Mobile滑动更改aspx页面

时间:2012-06-14 16:16:01

标签: jquery jquery-mobile

我有一个aspx。其中包含滑动事件的页面!当事件触发时,它应该更改为另一个aspx页面!它工作正常,但新的aspx页面出现在事件被触发的同一个aspx页面上!现在我在一边有两个内容......但我只想显示新的aspx页面中的内容......

这是我的代码:

<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<div data-role="page" id="Default">
    <div data-role="content">
        <div id="swipeRight">
            <asp:Image ImageUrl="~/Images/TestSeite.png" runat="server" />
        </div>

    </div>
</div>

<script type="text/javascript">

    $(function () {
        $("#swipeLeft").live('swipeleft', function (event, ui) {
            $.mobile.changePage("/Default.aspx", "slide");
        });

        $("#swipeRight").live('swiperight', function () {
            $.mobile.changePage("/Madrid.aspx", "slide");
        });
    });

</script>

1 个答案:

答案 0 :(得分:0)

如果用户向左滑动,则会轻触滑动和滑动左键,因为滑动会占据所有四个方向。

你最有可能使用swipeleft和swiperight。