jQuery Mobile - 表单字段容器

描述

ui-field-contain 类用于包装标签和表单输入。


示例

以下示例演示了在 jQuery Mobile 中使用表单字段容器。

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>
   
   <body>
      <div data-role = "page">
         <div data-role = "header">
            <h2>Form Field contain</h2>
         </div>
         
         <div data-role = "main" class = "ui-content">
            <form method = "post" action = "jquery_mobile/demo.php">
               <div class = "ui-field-contain">
                  <label for = "fname">First Name</label>
                  <input type = "text" name = "fname">
                  <label for = "lname">Last Name</label>
                  <input type = "text" name = "lname">

                  <label for = "select">Select City</label>
                  <select name = "select" id = "select">
                     <option value = "1">Belgaum</option>
                     <option value = "2">Pune</option>
                     <option value = "3">Chennai</option>
                     <option value = "4">Bangalore</option>
                     <option value = "5">Mumbai</option>
                  </select>

                  <input type = "submit" value = "Submit" data-inline = "true">
               </div>
            </form>
         </div>
      </div>
      
   </body>
</html>

输出

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

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

  • 将此 HTML 文件打开为 http://localhost/form_field_container.html,将显示以下输出。

❮ jQuery Mobile - 表单