Capítulo 1

Evento onclick - Click os botões abaixo

HTML

<script type="text/javascript">
  <button type="button" onclick="alert('Caixa de alerta');">Alert</button>
     
  <button type="button" onclick="confirm('Caixa de confirmação');">Confirm</button>
     
  <button type="button" onclick="prompt('Caixa de dados');">Prompt</button>  
</script>