14

由于 webkit 浏览器处理触摸事件,我尝试了几种不同的方法来消除 300 毫秒的延迟。库 FastClick.js 似乎是首选方法,但我在实现它时遇到了一些麻烦。我已经包含它并添加了一个事件侦听器,但我不知道我是否正确添加了侦听器。这应该有效还是我没有做某事?谢谢!

考虑下面的代码,其中

<!DOCTYPE html>
<html>
<head>
    <title>
        Calculator
    </title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-   scale=1.0, user-scalable=no;">
    <meta charset="utf-8">
    <script type="text/javascript" charset="utf-8" src="phonegap.js">
    </script>
    <<script type='application/javascript' src='js/fastclick.js'></script>
    <script type="text/javascript">

    function onBodyLoad()
    {       
        document.addEventListener("deviceready", onDeviceReady, false);
         $(function() {
         FastClick.attach(document.body);
         });

    }

    function onDeviceReady()
    {


    }
    </script>
    <script>
                window.addEventListener('load', function() {
                new FastClick(document.body);
                }, false);
    </script>

    <link rel="stylesheet" href="./css/jquerymobile.css" type="text/css">
    <link rel="stylesheet" href="./css/jquerymobile.nativedroid.css" type="text/css">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">   
</head>

<body onload="onBodyLoad()">
    <!--START OF PAGE 1-->
    <div data-role="page" data-theme='b' id="one">
        <div data-role="content">
              <a href="#one" data-transition="none" data-
        </div>
    </div>
</body>

4

3 回答 3

17

试试下面的代码。

function onBodyLoad()
{       
    document.addEventListener("deviceready", onDeviceReady, false);

}

function onDeviceReady()
{
  alert('test');
  FastClick.attach(document.body);
}

如果一切正常,您应该能够看到警报框。

看看http://phonegap-tips.com/articles/fast-touch-event-handling-eliminate-click-delay.html

于 2013-11-08T12:08:11.273 回答
0

您应该使用 jQuery Mobile 中的内置vclick事件- 与 FastClick 相同的想法。

$(document).on('vclick', '#someButton', function(){ 

});

资料来源:如何以正确的方式将 FastClick 与 jQuery Mobile 结合使用?

于 2015-02-13T20:20:49.230 回答
0

我也可以想到另一种解决方案..注意:我没有亲自尝试过这个..

$(document).on('pageinit', '.ui-page', function (event, data)
{
   FastClick.attach(activePage);
});
于 2013-11-08T12:12:45.480 回答