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


jQuery Mobile panel beforeclose用法及代碼示例


jQuery Mobile 是一組基於 HTML5 的用戶接口係統,構建在 jQuery 之上。它用於為手機、平板電腦、筆記本電腦和台式機等各種設備創建響應靈敏且可訪問的網站和 Web 應用程序。

在本文中,我們將使用 jQuery Mobile控製板關閉前當關閉麵板的過程開始時觸發的事件。

用法:

  • 初始化麵板關閉前指定回調:

    $( ".selector" ).panel({
      beforeclose: function( event, ui ) {
          // Your code here
      }
    });
  • 將事件監聽器綁定到關閉前麵板事件:

    $(".selector").on( "panelbeforeclose", function( event, ui ) {} );

參數:它接受一個具有兩個參數的回調函數:

  • event:它接受事件類型值。
  • ui:它接受對象類型值。 ui 對象可以為空,但用於與庫中的其他事件保持一致。

CDN 鏈接:

<link rel=”stylesheet” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”https://code.jquery.com/jquery-2.1.3.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js”></script>

例子:在下麵的示例中,當關閉前事件被觸發。

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="utf-8"> 
    <meta name="viewport" content= 
          "width=device-width, initial-scale=1"> 
  
    <link rel="stylesheet" href= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> 
    <script src= 
"https://code.jquery.com/jquery-2.1.3.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"> 
   </script> 
  
    <script> 
        $(document).ready(function () { 
            
             // Initialize the panel with 
              // beforeclose callback specified 
            $("#divID").panel({ 
                beforeclose: function (event, ui) { 
                    alert("Panel beforeclose event fired.") 
                } 
            }); 
        }); 
          
          // A function to close the panel. 
        function closePanel() { 
            $("#divID").panel("close"); 
        } 
    </script> 
</head> 
  
<body> 
    <div data-role="page"> 
        <div data-role="header"> 
            <h1 style="color:green;">GeeksforGeeks</h1> 
            <h3>jQuery Mobile Panel beforeclose event</h3> 
        </div> 
  
        <div role="main" class="ui-content"> 
            <center> 
                <a href="#divID">Open Panel</a> 
            </center> 
        </div> 
        <div data-role="panel" id="divID"> 
            <button onclick="closePanel();">Close Panel</button> 
        </div> 
    </div> 
</body> 
</html>

輸出:

jQuery

參考:https://api.jquerymobile.com/panel/#event-beforeclose



相關用法


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