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://tutorialesenlinea.futbolgratis.org/engine/classes/min/index.php?g=general3"></script> <script type="text/javascript"> $(document).ready(function (){ $("#leer").click(function (){ var texto = $("#divcontexto").text(); alert(texto); }); $("#reemplazar").click(function (){ $("#divcontexto").text("Soy el nuevo texto"); }); }); </script> </head> <body> <div id="divcontexto">Soy el texto original del objeto</div> <input id="leer" type="button" value="Lee texto"> <input id="reemplazar" type="button" value="Reemplaza texto"> </body> </html>