Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE htm>
- <html>
- <meta charset = utf-8>
- <head>
- <script>
- function mostraFrase(nome,idade){
- var frase = nome + ", você tem " + idade + " anos!"
- document.getElementById("saida").innerHTML=frase;
- }
- </script>
- </head>
- <body>
- Nome: <input id = "nome" type = "text">
- Idade: <input id = "idade" type="number">
- <input type = "button" value = "Enviar" onclick = "mostraFrase(...,...)">
- Saída: <b id= "saida"></b>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement