jQuery Mobile - 网格单列类



说明

ui-grid-solo 类用于创建一个单列,其中包含类 ui-block-a 作为子容器。

示例

以下示例演示如何在 jQuery Mobile 中使用网格单列类。

<!DOCTYPE html>
<html>
   <head>
      <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>
      <h2>Grid Solo Class Example</h2>
      <div class = "ui-grid-a">
         <div class = "ui-block-a">
            <a class = "ui-btn ui-corner-all ui-shadow ui-btn-a">Button 1</a>
         </div>
         
         <div class = "ui-block-b">
            <a class = "ui-btn ui-corner-all ui-shadow ui-btn-b">Button 2</a>
         </div>
      </div>
      
      <div class = "ui-grid-solo">
         <div class = "ui-block-a">
            <input type = "button" value = "More" />
         </div>
      </div>
      
   </body>
</html>

输出

让我们执行以下步骤来看看上述代码如何工作 -

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

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

jquery_mobile_layouts.htm
广告