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


jQuery Mobile Popup destroy()用法及代碼示例


jQuery 移動是一個構建於之上的 JavaScript 庫jQuery,它用於構建快速且響應靈敏的網站,可在移動設備、選項卡和桌麵等各種設備上訪問。

在本文中,我們將使用 jQuery Mobile Popup destroy() 方法來銷毀彈出窗口。當我們在彈出窗口上調用 destroy() 方法時,彈出窗口函數將從彈出窗口元素中刪除,並返回到其預初始化狀態。

用法:

$( ".selector" ).popup( "destroy" );

Parameters: 該方法不接受任何參數。

CDN 鏈接:要使用 Popup 元素,首先將 jQuery Mobile 添加到您的項目中。

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

例子:在下麵的示例中,我們將打開一個彈出窗口並在 3000 毫秒後調用 destroy() 方法。

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 - reposition method</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> 
      function openAndDestroyPopup(){ 
        $( "#popup1" ).popup( "open",  
                             {positionTo: "#target"} ); 
  
        // Destroy the popup 3 seconds after opening 
        setTimeout(() => { 
          $( "#popup1" ).popup( "destroy"); 
        }, 3000); 
      } 
    </script> 
  </head> 
  <body> 
    <div data-role="page"> 
      <center> 
        <h2 style="color: green">GeeksforGeeks</h2> 
        <h3>jQuery Mobile Popup destroy Method</h3> 
  
        <p id="target"> 
          Popup will open here and will 
          destroy after 3 seconds 
        </p> 
   
        <div data-role="popup" id="popup1"> 
          <p>Welcome to GeeksforGeeks</p> 
        </div> 
  
        <button style="width: 450px;" 
            onclick="openAndDestroyPopup()"> 
            Open & Destroy Popup 
        </button> 
      </center> 
    </div> 
  </body> 
</html> 

輸出:

jQuery Mobile Popup destroy() Method

參考:https://api.jquerymobile.com/popup/#method-destroy



相關用法


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