当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。