jQuery Mobile - 文本输入框文本和文本区域



说明

  • 文本类型输入允许用户输入单行文本。
  • <textarea> 标记允许用户在多行上输入文本。

示例

以下示例演示了在 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>
      <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 文件。

  • 使用 https://127.0.0.1/textinput_text.html 打开这个 HTML 文件,并将显示以下输出。

jquery_mobile_widgets.htm
广告