PhoneGap Android Tap&举办活动

时间:2012-03-06 23:57:39

标签: javascript jquery android cordova

手机间隙或者jquery中是否有功能意味着我可以拿起任何一个水龙头&保持元素上的事件。我查看过phonegap文档,但找不到任何内容

我看到jQuery mobile有它,但我目前没有包括这个,并希望我不需要为此添加另一个库

由于

1 个答案:

答案 0 :(得分:-1)

在这里你可以做同样的事情。我已经尝试过我的项目

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script>
$(document).on("pagecreate","#pageone",function(){
  $("p").on("taphold",function(){
    $(this).hide();
  });                       
});
</script>
</head>
<body>

<div data-role="page" id="pageone">
  <div data-role="header">
    <h1>The taphold Event</h1>
  </div>

  <div data-role="main" class="ui-content">
    <p>If you tap and hold me for one second, I will disappear.</p>
    <p>Tap and hold me!</p>
    <p>Tap and hold me too!</p>
  </div>

  <div data-role="footer">
    <h1>Footer Text</h1>
  </div>
</div> 

</body>
</html>

http://www.w3schools.com/jquerymobile/tryit.asp?filename=tryjqmob_event_taphold