Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Incluye texto con jQuery</title> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script type="text/javascript"> $(document).ready(function (){ $('#campo').on('keyup', function(){ var valor = $('#campo').val(); $('#reflejar').text(valor); //$('#campo').val("Hola mundo"); }); }); </script> </head> <body><br> <input type="text" id="campo"> <div id="reflejar"></div> </body> </html>