Hendripanjaitan

HTML +JS Minimal Inputan dan hanya Huruf atau Angka

Sep 10th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5.     <script type="text/javascript">
  6.     function validasi_input(form){
  7.     pola_username=/^[a-zA-Z0-9\_\-]{6,7}$/;
  8.     if (!pola_username.test(form.username.value)){
  9.     alert ('Username minimal 6 karakter dan hanya boleh Huruf atau Angka!');
  10.     form.username.focus();
  11.     return false;
  12.    }
  13.    return (true);
  14.    }
  15. </script>
  16. </head>
  17. <body>
  18.  
  19. <form method="post" action="aksi.php" onsubmit="return validasi_input(this)">
  20. <p>Username: <input name="username" type="text"></p>
  21. <p><input name="" type="submit" value="Submit"></p>
  22.  
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment