jQuery Mobile - Mini 迷你文本输入

描述

包含属性 data-mini = "true" 用于创建迷你版本的文本输入。


示例

以下示例演示了 jQuery Mobile 中 mini 迷你输入的使用。

<!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>
      <form>
         <h2>Text mini Input Example</h2>
         <label for = "src">Text Input</label>
         <input type = "text" id = "src" data-clear-btn = "false" data-mini = "true">

         <label for = "src1">Clear the Text mini Field</label>
         <input type = "text" data-clear-btn = "true" id = "src1" data-mini = "true">

         <label for = "src2">Search mini Input</label>
         <input type = "search" id = "src2" data-mini = "true">

         <label for = "src3">Textarea mini Field</label>
         <textarea type = "textarea" id = "src3" data-mini = "true"></textarea>
      </form>
   </body>
</html>

输出

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

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

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

❮ jQuery Mobile - 小部件