我想用一个“vclick”类将vclick绑定到我的链接,因此响应非常快。我该怎么做

<!DOCTYPE html>
<html>
  <head>
  <title></title>


  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
  <body >

  <div data-role="page" id="page">
    <div data-role="header">
      <h1>Header</h1>
    </div>
    <div data-role="content"><a data-transition="slide" href="#page2" class="vclick">go to page 2</a></div>
    <div data-role="footer">
      <h4>Footer</h4>
    </div>
  </div>
  <div data-role="page" id="page2">
    <div data-role="header">
      <h1>Page 2</h1>
    </div>
    <div data-role="content"><a data-transition="slide" data-direction="reverse" href="#page" class="vclick">back to page one</a></div>
    <div data-role="footer">
      <h4>Footer</h4>
    </div>
  </div>
  </body>
</html>

我学会了快速触碰反应

最佳答案

尝试jQuery FastClickhttps://github.com/ftlabs/fastclick
FastClick是一个简单易用的库,它消除了物理点击和在移动浏览器上触发点击事件之间300毫秒的延迟。这样做的目的是让您的应用程序感觉不那么滞后,响应速度更快,同时避免对当前逻辑的任何干扰。

关于jquery - 使用类将click绑定(bind)到url,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31292229/

10-12 00:09