Skip to content

Instantly share code, notes, and snippets.

@murilomothsin
Created May 14, 2016 03:44
Show Gist options
  • Save murilomothsin/fe94a0c1707c4c6969317abf1e07b40c to your computer and use it in GitHub Desktop.
Save murilomothsin/fe94a0c1707c4c6969317abf1e07b40c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<title>Hello World</title>
<script type="text/javascript">
window.onload = function () {
document.getElementById("hello").addEventListener("click", function () {
var nome = document.getElementById("nome").value;
var idade = document.getElementById("idade").value;
var mensagem = "Olá " + nome;
if(idade < 18){
mensagem = mensagem + "<br> Você não pode entrar!";
}else{
mensagem = mensagem + "<br> Sejá bem vindo!";
}
document.getElementById("msg").innerHTML = mensagem;
});
};
</script>
</head>
<body>
<noscript>
<div style="color: red;">Seu navegador não suporta JavaScript ou ele está desabilitado. </div>
</noscript>
<label>Nome: <input type="text" id="nome"></label>
<label>Idade: <input type="text" id="idade"></label>
<button id="hello">Entrar</button>
<br />
<br />
<div id="msg"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment