作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 jquery 移动项目。我有两个 html 页面。从index.html我有一个swipeleft事件到page.html并且它工作正常。我想从 page.html 向右滑动,然后返回到 index.html,但这行不通。
如果我在单个文档内的内部页面之间滑动,但在 html 页面之间滑动,则代码可以正常工作。我需要使用几个 html 页面。
有人能做到这一点吗?如能得到解答,将不胜感激。
这是我在 index.html 页面中的滑动代码:
<script>
$(document).ready(function() {
$("#main").bind('swipeleft',function(event, ui){
$.mobile.changePage("page.html", "slide");
})
})
</script>
这是我的 page.html 代码:
<script>
$(document).ready(function() {
$("#main").bind('swiperight',function(event, ui){
$.mobile.changePage("index.html", "slide");
})
})
</script>
最佳答案
你不应该使用$.ready(),你应该使用pageInit()相反。
另外,请确保页面上的所有 id 在所有页面上都是唯一的,而不仅仅是页面上唯一的。
关于jquery - 如何使用 jquery mobile 从一个 html 页面滑回到另一页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8601862/
我正在使用 ionic 。 ionic 载玻片 Slide 1 Slide 2 Slide 3 我想要这样的效果我加了 .swiper-
我是一名优秀的程序员,十分优秀!