「jQuery Mobile」tapholdイベントを使用するサンプル

2020年12月4日

構文
$(selector).on(“tahold",function(){
some code
})
750msec以上続けてタッチしたときに発生するイベントです。
htmlコード

<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="/jquery/1.10.2/jquery.min.js"></script>
<script src="/jquerymobile/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>

jQueryコード

<div data-role="page" id="pageone">
  <div data-role="header">
    <h1>taphold イベント</h1>
  </div>

  <div data-role="main" class="ui-content">
    <p>1秒以上タッチしたら、内容が消されます。</p>
    <p> hold 1 second content will disappear</p>
    <p>hold 1 second content will disappear</p>
  </div>

</div>

 

jQuery Mobile,Software

Posted by arkgame