jQuery Mobile - Textinput 文本和文本区域

描述

  • 文本类型输入允许用户输入一行文本。
  • <textarea> 标签允许用户在多行中输入文本。

示例

以下示例演示了在 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>
      <form>
         <h2>Text Input Example</h2>
         <label for = "text">Text input</label>
         <input type = "text" id = "text" data-clear-btn = "false">
      
         <label for = "text1">Clear the Text</label>
         <input type = "text" data-clear-btn = "true" id = "text1">

         <h2>Textarea Example</h2>
         <textarea type = "textarea" id = "txt"></textarea>
      </form>
   </body>
</html>

输出

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

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

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

❮ jQuery Mobile - 小部件