1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
<title>TEST</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" media="screen" type="text/css" title="montheme1" href="../theme1.css" />
<link rel="stylesheet" media="screen" type="text/css" href="advance.css" />
<script type="text/javascript">
var textBox1
var textBox2
var oldValue2
function checkForm(){
textBox1 = document.getElementById("toto")
textBox2 = document.getElementById("tutu")
oldValue2 = textBox2.value // sauvegarde de la valeur avant modification
// pour ne pas afficher la variable
if (textBox1.value == ""){
textBox1.disabled = true
}
// pour modifier la valeur
textBox2.value = "salut"
// remet les valeurs qu'il y avait avant modif
setTimeout(function(){reinit()},1) // appel la fonction pas tout de suite (le temps que l'email s'ouvre) => il faut peut etre augmenter la valeur
return true
// return false // pour refuser l'envoie
}
function reinit(){
textBox1.disabled = false
textBox2.value = oldValue2
}
</script>
</head>
<body>
<form action="MAILTO:monadresse@gmail.com" method="post" enctype="text/plain" onsubmit="return checkForm()">
<p><input type="checkbox" id="titi" name="titi" /></p>
<p><input type="text" id="toto" name="toto"/></p>
<p><input type="text" id="tutu" name="tutu"/></p>
<p><input type="submit"/></p>
</form>
</body>
</html> |
Partager