Bonjour,
Je voudrais réaliser un incrémenteur/décrémenteur numérique, mais ça ne marche pas, svp aidez moi à résoudre le problème.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 <form id="form1" name="form1" method="post" action="calculQte.php"> <table cellpadding="0" cellspacing="0" border="0"> <tr valign="middle"> <td><input type="text" name="qte" value="0" size="4" /></td> <td><input name="qte_plus" type="image" src="photos/plus.gif" width="14" height="10" border="0" hspace="0" vspace="0" onClick="ajouter_qte_art()"/><br /><input name="qte_moins" type="image" src="photos/moins.gif" width="14" height="10" border="0" hspace="0" vspace="0" onClick="supprimer_qte_art()"/></td> </tr> </table> <script language="javascript"> function ajouter_qte_art(){ $qty_final=$_POST[qte]+1; print($qty_final); return ($qty_final); } function supprimer_qte_art(){ $qty_final=$_POST[qte]-1; print($qty_final); return ($qty_final); } </script> </form>
Partager