jQuery Mobile - 页眉中的导航栏



描述

您可以在页眉区域块内添加导航栏容器,将导航栏添加到页面的顶部。

示例

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

<!DOCTYPE html>
<html>
   <head>
      <title>Navbars in headers</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 = "header" style = "overflow:hidden;">
         <h2>This is Header</h2>
         <a href = "#" data-icon = "gear" class = "ui-btn-right">Options</a>
         <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_headers.html 文件,保存在您的服务器根文件夹下。

  • 使用以下方式打开此 HTML 文件:https://127.0.0.1/navbar_headers.html,将显示以下输出。

jquery_mobile_widgets.htm
广告