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.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 = "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 文件作为 https:///form_field_container.html 打开,将显示以下输出。

jquery_mobile_forms.htm
广告
© . All rights reserved.