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


jQuery Mobile Popup open()用法及代码示例


jQuery 移动是 web-technology,用于创建响应式且可访问的网站和 Web 应用程序。它建立在jQuery.

在本文中,我们将使用 jQuery Mobile Popup open() 方法通过指定选项打开弹出窗口。

用法:

$( ".selector" ).popup( "open", options );

这里的 options 参数是 object 类型,它接受 4 个键:

  • x: 要显示弹出窗口的 x 坐标。
  • y: 要显示弹出窗口的 y 坐标。
  • transition: 它定义打开弹出窗口时要使用的转换。它接受一个字符串,默认值为空字符串。
  • positionTo: jQuery 选择器可用于定义弹出窗口的显示位置。

CDN 链接:首先,将 jQuery 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 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 openPopup(){ 
        $( "#popup1" ).popup( "open",  
                             {positionTo: "#target"} ); 
      } 
    </script> 
  </head> 
  <body> 
    <div data-role="page"> 
      <center> 
        <h2 style="color: green">GeeksforGeeks</h2> 
        <h3>jQuery Mobile Popup open Method</h3> 
  
        <p id="target">Popup will open here</p> 
   
        <div data-role="popup" id="popup1"> 
          <p>Welcome to GeeksforGeeks</p> 
        </div> 
  
        <button onclick="openPopup()"> 
          Open Popup 
        </button> 
      </center> 
    </div> 
  </body> 
</html>

输出:

jQuery Mobile Popup open() Method

参考: https://api.jquerymobile.com/popup/#method-open



相关用法


注:本文由纯净天空筛选整理自vpsop大神的英文原创作品 jQuery Mobile Popup open() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。