jquery – 如何使用FastClick.js与Phonegap和JQM?

前端之家收集整理的这篇文章主要介绍了jquery – 如何使用FastClick.js与Phonegap和JQM?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
由于webkit浏览器处理触摸事件,我尝试了几种不同的方式来消除300ms的延迟.图书馆,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>

解决方法

尝试以下代码.
function onBodyLoad()
{       
    document.addEventListener("deviceready",false);

}

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

如果一切正常,您应该可以看到警报框.

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

原文链接:https://www.f2er.com/jquery/179868.html

猜你在找的jQuery相关文章