jQuery Mobile - Textinput Text y Textarea

Descripción

  • La entrada de tipo de texto permite al usuario introducir texto de una línea.
  • La etiqueta <textarea> permite al usuario ingresar texto en múltiples filas.

Ejemplo

El siguiente ejemplo demuestra el uso de texto y entrada de área de texto en 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>

Salida

Realicemos los siguientes pasos para ver cómo funciona el código anterior:

  • Guarde el código html anterior como textinput_text.html archivo en la carpeta raíz de su servidor.

  • Abra este archivo HTML como http: //localhost/textinput_text.html y se mostrará el siguiente resultado.