我有一个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>
答案 0 :(得分:0)
你最有可能使用swipeleft和swiperight。