Advertisement
ph4x35ccb

pegando dados funçao auto executavel

May 8th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Curso JavaScript</title>
  5.    
  6. </head>
  7. <body>
  8. <h1>Curso javascript</h1>
  9. <div id="msg"></div>
  10. <script>
  11.     (function(){
  12.         var nome = prompt("Qual seu nome");
  13.         document.querySelector('#msg').innerHTML="Bem vindo <b>"+nome+"<br>";
  14.     })();
  15.  
  16. </script>
  17. </body>
  18. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement