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


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