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


jQuery Mobile Popup afterclose用法及代碼示例


jQuery 移動是建立在 Web-technology 之上的jQuery。它用於製作可在選項卡、移動設備和桌麵等各種設備上訪問的響應式內容。在本文中,我們將使用 jQuery Mobile彈出窗口關閉後事件當彈出窗口完全關閉時觸發。

回調參數:回調函數接受 Event 類型的事件參數和 UI 對象。這裏的 UI 對象是空的,包含它隻是為了與其他事件保持一致。

用法:

  • 使用指定的 afterclose 回調初始化彈出窗口:

    $(".selector").popup({
        afterclose: function (event, ui) {
            // Your code here
        }
    });
  • 將事件監聽器綁定到 popupafterclose 事件:

    $(".selector").on("popupafterclose", function (event, 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>

例子:在下麵的示例中,當 afterclose 事件觸發時,我們設置 id 為“的段落文本”“ 到 ”afterclose 事件觸發”。這裏我們使用 Popup close() 方法在 3 秒後關閉彈出窗口。

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="UTF-8" /> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 
    <meta name="viewport" 
          content="width=device-width, initial-scale=1.0" /> 
    <title>Popup - afterclose Event</title> 
  
    <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 () { 
            $("#popup1").popup({ 
                afterclose: function (event, ui) { 
                    $("#write").text("afterclose Event triggered"); 
                } 
            }); 
        }); 
  
        function openPopup() { 
            $("#popup1").popup("open", { positionTo: "#target" }); 
  
            setTimeout(() => { 
                // Invoke the close() method after 3seconds 
                $("#popup1").popup("close"); 
            }, 3000); 
        } 
  
    </script> 
</head> 
  
<body> 
    <div data-role="page"> 
        <center> 
            <h2 style="color: green">GeeksforGeeks</h2> 
            <h3>jQuery Mobile Popup afterclose Event</h3> 
  
            <p id="target">Popup will open here</p> 
  
  
            <div data-role="popup" id="popup1"> 
                <p>Welcome to GeeksforGeeks</p> 
  
            </div> 
  
            <button style="width: 450px;" 
                    onclick="openPopup()">Open Popup</button> 
  
            <p style="background-color: green; color: white;" 
               id="write"></p> 
  
        </center> 
    </div> 
</body> 
  
</html>

輸出:

jQuery Mobile Popup afterclose Event

參考: https://api.jquerymobile.com/popup/#event-afterclose



相關用法


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