我想将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>
我了解到vclick
使触摸响应更快
答案 0 :(得分:1)
尝试jQuery FastClick https://github.com/ftlabs/fastclick
FastClick是一个简单易用的库,用于消除物理点击和触发移动浏览器上点击事件之间300毫秒的延迟。目的是让您的应用程序感觉不那么迟钝,响应更快,同时避免干扰您当前的逻辑。