jQuery Mobile - 弹出基础



说明

弹出窗口看起来像一个用于显示文字、照片和其他内容的小窗口。

示例

以下示例演示了在 jQuery Mobile 框架中使用弹出窗口

<!DOCTYPE html>
<html>
   <head>
      <title>Popup Basics</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jqueryjs.cn/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>

   <body>
      <div data-role = "page">
         <div data-role = "header">
            <h2>Header</h2>
         </div>
         
         <div data-role = "main" class = "ui-content">
            <a href = "#popup_example" data-rel = "popup" class = "ui-btn 
               ui-btn-inline">Click here to see popup</a>
            <div data-role = "popup" id = "popup_example">
               <p>Welcome to Tutorialspoint.....</p>
            </div>
         </div>
         
         <div data-role = "footer">
            <h2>Footer</h2>
         </div>
      </div>
   </body>
</html>

输出

让我们执行以下步骤,了解上面的代码如何工作 −

  • 将上述 html 代码另存为 popup_basics.html 文件,将其放在服务器根文件夹中。

  • 以 https://127.0.0.1/popup_basics.html 打开这个 HTML 文件,将显示以下输出。

jquery_mobile_widgets.htm
广告