Advertisement
rony2605

Verifica campo em branco

Mar 2nd, 2013
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.   <head>
  3.     <title>Duncan's Just-In-Time Donuts</title>
  4.  
  5.     <link rel="stylesheet" type="text/css" href="donuts.css" />
  6.  
  7.     <script type="text/javascript">
  8.       function updateOrder() {
  9.           if(document.getElementById("name").value == " ");
  10.             alert("vc precisa fornecer o nome") //Se o nome tiver vazio dispara alerta.
  11.            else if(document.getElementById("pickminutes").value == " ");
  12.             isNan (document.getElementById("pickminutes").value); //Verifica se o  valor estiver vazio ou nao eh um numero.
  13.             alert("vc deve fornecer o numero de minutos");
  14.               else         
  15.             form.submit();// Envie seu pedido ao servidor
  16.     }
  17.     </script>
  18.   </head>
  19.  
  20.   <body>
  21.  
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement