Jump to content
php.lv forumi

Validate form


MiYavI

Recommended Posts

Tātad ir tāds kods:

<script>
function validate(f) {
 if(f.niks.value=="") {
 alert("Ierakstiet niku!");
 f.niks.style.background = "silver";
  return false;
 }  else if  (f.parole.value == "") {
 alert("Ierakstiet paroli");
  f.parole.style.background = "silver";
  return false;
 }
else if  (f.parole2.value == "") {
 alert("Ierakstiet paroli atkārtoti");
  f.parole.style2.background = "silver";
  return false;
 }
else if  (f.parole.value != f.parole2.value) {
 alert("Paroles nesakrīt");
  f.parole.style.background = "yellow";
f.parole2.style.background = "yellow";
  return false;
 }
 return true;
}

</script>
<form action=get_reg.php method=POST onsubmit="return validate(this)" >
Niks: <input type=text name=niks id=niks><br>
Parole: <input type=password name=palore id=parole><br>
Parole 2: <input type=password name=parole2 id=parole><br>
<input type=submit value=Ok>
</form>

 

Un nestrādā.. It kā, ja izņemu tos paroles validate, tad strādā.. Jeb tad strādā tikai nika pārbaude.. bet man vajag visus.

Link to comment
Share on other sites

×
×
  • Create New...