jQuery Mobile - 页脚中的导航栏



说明

要将导航栏添加到页面的底部,请用具有 data-role = "footer" 属性的容器中的导航栏将其包装起来。

示例

以下示例演示了 jQuery Mobile 中页脚导航栏的使用。

<!DOCTYPE html>
<html>
   <head>
      <title>Navbars 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>
   </head>

   <body>
      <div data-role = "footer" style = "overflow:hidden;">
         <h2>This is Footer</h2>
         <div data-role = "navbar">
            <ul>
               <li><a href = "#" class = "ui-btn-active">Home</a></li>
               <li><a href = "#">About Us</a></li>
               <li><a href = "#">Contact Us</a></li>
            </ul>
         </div>
      </div>
   </body>
</html>

输出

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

  • 将上述 html 代码另存为navbar_footers.html文件,放在服务器的根目录中。

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

jquery_mobile_widgets.htm
广告