mobile.changePage 到 nextPage?
如何更改下面的代码以滑动到下一页/“to: url”,而无需为每个页面更改编写脚本?
<script type="text/javascript">
$('div').live("swipeleft", function(){
$.mobile.changePage("#pg02", "slide", false, true);
});
$('div').live("swiperight", function(){
$.mobile.changePage("#pg01", "slide", true, true);
});
</script>
How do I change the code below to swipe to the next page/ the 'to: url' w/o having to write the script for every page change?
<script type="text/javascript">
$('div').live("swipeleft", function(){
$.mobile.changePage("#pg02", "slide", false, true);
});
$('div').live("swiperight", function(){
$.mobile.changePage("#pg01", "slide", true, true);
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的页面重命名为 pg1 pg2, ..., pg10 前面没有零,
您将必须添加一些
if
来保护第一页和最后一页。您可能还想将 now 变量放入不在 window 对象的全局范围内的其他对象中。
rename your pages to pg1 pg2, ..., pg10 without the zeros in front
you will have to add some
if
s to guard first and last page.You might also want to put the now variable in some other object not in the global scope of window object.