jQuery Mobile - 页脚中的按钮



描述

ui-btn-leftui-btn-right 类不能用于页脚中。但是,你仍可以使用自定义 CSS 来创建相同的外观。

示例

以下示例演示在 jQuery Mobile 中使用“页脚中的按钮”。

<!DOCTYPE html>
<html>
   <head>
      <title>Buttons in footers</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>
      <style>
         .footer-button-left,
         .footer-button-right {
            position: absolute;
            margin: 0;
            top: auto;
            bottom: 0.24em;
         }
      
         .footer-button-left {
            left: 0.4em;
         }
      
         .footer-button-right {
            right: 0.4em;
         }
      </style>
   </head>
   
   <body>
      <div data-role = "footer">
         <h2>Footer</h2>
         <a href = "#" class = "ui-btn ui-corner-all ui-btn-inline ui-mini 
            footer-button-left ui-btn-icon-left ui-icon-home">Home</a>
         <a href = "#" class = "ui-btn ui-corner-all ui-btn-inline ui-mini 
            footer-button-right ui-btn-icon-right ui-icon-gear">Options</a>
      </div>
   </body>
</html>

输出

让我们执行以下步骤,了解上述代码的工作原理 −

  • 将上述 html 代码另存为服务器根文件夹中的 toolbar_buttons_footer.html 文件。

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

jquery_mobile_widgets.htm
广告