當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQuery Mobile swipeleft用法及代碼示例


jQuery Mobile 向左滑動當我們在元素區域向左滑動時會觸發事件。我們可以將此事件用於不同目的。

用法:

jQuery( ".selector" ).on( "swipeleft", function( event ) {  } )

方法:首先,添加項目所需的jQuery移動腳本。

<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>

範例1:



HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <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> 
  
    <script type="text/javascript"> 
        $(document).on('swipeleft', 'a', function() { 
            console.log('swipeleft event fired'); 
        }) 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1>GeeksforGeeks</h1> 
        <h4>swipeleft Event using jQuery Mobile</h4> 
    </center> 
  
    <a data-role="button" id="gfg">click</a> 
</body> 
  
</html>

輸出:

範例2:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <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> 
  
    <script type="text/javascript"> 
        $(document).on('swipeleft', 'a', function(event) { 
            console.log(event) 
        }) 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1>GeeksforGeeks</h1> 
        <h4>swipeleft Event using jQuery Mobile</h4> 
    </center> 
  
    <a data-role="button" id="gfg">click</a> 
</body> 
  
</html>

輸出:

相關用法


注:本文由純淨天空篩選整理自taran910大神的英文原創作品 jQuery Mobile swipeleft Event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。