Advertisement
JVFabia

Untitled

Aug 10th, 2020
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     <script type="text/javascript">
  2.       // Funcion javascript alerta
  3.       function alerta() {
  4.         alert("Se corto la luz! ");
  5.       }
  6.       // funcion mensaje
  7.       function mensaje() {
  8.         var nombre = document.getElementById("usuario").value;
  9.         console.log("El nombre ingresado es " + nombre );
  10.  
  11.         document.getElementById("mensaje").innerHTML="Hola "+ nombre;
  12.  
  13.       }
  14.     </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement