0

我在使用 jQuery 滑动功能时遇到了一些问题。我只是想用这段代码刷到下一页:

<script>                                                                          
$('#dataPageOilLevel').live('swiperight',function(event){
  $.mobile.changePage("batteryStatus.html", { transition: "slideup"});
})</script>

在我的 html5 文档的末尾。ID 是正确的,页面链接应该可以工作。

如果我尝试滑动,​​我会得到这个 LogCat:

webview “我们正在等待 WebCore 对着陆的响应,因此错过了一个阻力”

奇怪的是,相同的代码在第一页上运行没有问题。

任何想法?

4

1 回答 1

0

https://github.com/jquery/jquery-mobile/issues/1746 http://uihacker.blogspot.com/2010/10/android-bug-miss-drag-as-we-are-waiting.html

许多 Web 框架(JQueryMobile、Sencha Touch)将覆盖导致警告的 ontouchmove 事件,因为它从未命中 touchdown 事件。我认为你不必担心这个警告。我知道我过去曾收到此警告,但它从未阻止该应用程序正常运行。

编辑:尝试其中一些 http://forum.jquery.com/topic/looking-for-a-complete-swiperight-swipeleft-example http://forum.jquery.com/topic/need-example-of-swipeleft -swiperight-any-body-got-a-good-url http://www.raymondcamden.com/index.cfm/2011/3/14/Using-swipe-gestures-for-navigation-in-jQuery-Mobile

于 2012-07-11T14:36:21.050 回答