觸摸事件在用戶觸摸屏幕(頁(yè)面)時(shí)觸發(fā)。
jQuery Mobile 觸摸事件 語(yǔ)法
點(diǎn)擊事件在用戶點(diǎn)擊元素時(shí)觸發(fā)。
jQuery Mobile 觸摸事件 示例
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.css"> <script src="https://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script> <script src="https://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> <script> $(document).on("pagecreate","#pageone",function(){ $("p").on("tap",function(){ $(this).hide(); }); }); </script> </head> <body> <div data-role="page" id="pageone"> <div data-role="header"> <h1>tap 事件</h1> </div> <div data-role="main" class="ui-content"> <p>敲擊我,我會(huì)消失。</p> <p>敲擊我,我會(huì)消失。</p> <p>敲擊我,我也會(huì)消失。</p> </div> <div data-role="footer"> <h1>頁(yè)腳文本</h1> </div> </div> </body> </html>
運(yùn)行實(shí)例 ?
點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例