merhabalar yoğun olduğum için biraz geç yazıyorum.
iyinet senin dediğini düşündüm fakat şöyle bir şey aklıma takıldı.
submitonce'ın kullanımı onSubmit="submitonce(this)" şeklinde
doluluğu kontrol eden js'nin kullanımı onsubmit="return oyuncuara_onsubmit()" şeklinde
sormak istediğim verdiğin şekilde iki js içinde return mü yapmalıyım?
Kod:
<SCRIPT language=javascript>
<!--
function oyuncuara_onsubmit(){
if (document.oyuncuara.ara.value == ""){
document.getElementById("bilgi").innerHTML = "<font face='Verdana' style='font-size: 8pt' color='#3692F8'><b><?php echo "$kullaniciadiyaziniz"; ?></b></font>";
document.oyuncuara.ara.focus();
return false;
}
if (document.oyuncuara.ara.value.length<4 || document.oyuncuara.ara.value.length>16){
document.getElementById("bilgi").innerHTML = "<font face='Verdana' style='font-size: 8pt' color='#3692F8'><b><?php echo "$dortkarakter"; ?></b></font>";
document.oyuncuara.ara.focus();
return false;
}
}
//-->
</SCRIPT>
Kod:
<script>
function submitonce(theform){
//if IE 4+ or NS 6+
if (document.all||document.getElementById){
//screen thru every element in the form, and hunt down "submit" and "reset"
for (i=0;i<theform.length;i++){
var tempobj=theform.elements[i]
if(tempobj.type.toLowerCase()=="submit"||tempobj.type.toLowerCase()=="reset")
//disable em
tempobj.disabled=true
}
}
}
</script>