Ciao,
premetto che sono unanullità in php e js e ringrazio già anticipatamente chi avrà il buon cuore e la pazienza di aiutarmi...dunque ho una funzione che controlla che i campi del form siano corretti (nome, cognome, tel etc.).
Vorrei aggiungere una funzione che faccia apparire un alert qualora il totale dell'ordine sia minore di 24.
Come posso fare?
Ecco il js:
premetto che sono unanullità in php e js e ringrazio già anticipatamente chi avrà il buon cuore e la pazienza di aiutarmi...dunque ho una funzione che controlla che i campi del form siano corretti (nome, cognome, tel etc.).
Vorrei aggiungere una funzione che faccia apparire un alert qualora il totale dell'ordine sia minore di 24.
Come posso fare?
Ecco il js:
PHP:
function ValideCommande()
{ //Nom
if (document.FCommadeValider.tnom.value < 1)
{
alert("Vous devez indiquer votre nom!");
document.FCommadeValider.tnom.focus();
return false;
}
//Prenom
if (document.FCommadeValider.tprenom.value < 1)
{
alert("Vous devez indiquer votre prenom!");
document.FCommadeValider.tprenom.focus();
return false;
}
//Téléphone
if (document.FCommadeValider.ttel.value.length < 10)
{
alert("Format du numéro incorrecte!");
document.FCommadeValider.ttel.focus();
return false;
}
//Téléphone correct
//var reg = /^0[2,7][0-9]{8,10}/;
//if (reg.exec(document.FCommadeValider.ttel.value) == null)
if (document.FCommadeValider.ttel.value < 1)
{
alert("Format du numéro incorrecte!");
document.FCommadeValider.ttel.focus();
return false;
}
//Rue
if (document.FCommadeValider.tvia.value < 1)
{
alert("Vous devez indiquer votre rue!");
document.FCommadeValider.tvia.focus();
return false;
}
//NIP
if (document.FCommadeValider.tcode.value < 1)
{
alert("Vous devez indiquer votre NIP!");
document.FCommadeValider.tcode.focus();
return false;
}
//Ville
if (document.FCommadeValider.tville.value < 1)
{
alert("Vous devez indiquer votre ville!");
document.FCommadeValider.tville.focus();
return false;
}
//Si on rentre un email on vérifie
if (document.FCommadeValider.tmail.value.length > 0)
{
//Email correct
var reg = /^[a-zA-Z0-9\-_]+[a-zA-Z0-9\.\-_]*@[a-zA-Z0-9\-_]+\.[a-zA-Z\.\-_]{1,}[a-zA-Z\-_]+/;
if (reg.exec(document.FCommadeValider.tmail.value)== null)
{
alert("E-mail incorecte!");
document.FCommadeValider.tmail.focus();
return false;
}
}
else
{
alert("E-mail incorecte!");
document.FCommadeValider.tmail.focus();
return false;
}
document.FCommadeValider.submit();
}