login  Naam:   Wachtwoord: 
Registreer je!
 Forum

Reset werkt niet.

Offline Schokkie - 20/10/2004 22:11
Avatar van SchokkieNieuw lid Kan er mij iemand verklaren waarom de reset niet werkt.
De velden worden wel gewist maar de totale som word niet op 0 gezet.

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  4. <title>www.eine-heemkring.be ..:: Bestelllingen ::..</title>
  5. <script language="javascript" type="text/javascript">
  6. function totaal(){
  7.  
  8. var totaal = 0;
  9.  
  10. if(document.forms['bestellen'].CheckboxKleur.checked == true){
  11.  
  12. totaal += 25;
  13.  
  14. }
  15.  
  16. if(document.forms['bestellen'].CheckboxZwartWit.checked == true){
  17.  
  18. totaal += 20;
  19.  
  20. }
  21.  
  22. if(document.forms['bestellen'].CheckboxZichtkaarten.checked == true){
  23.  
  24. totaal += 25;
  25.  
  26. }
  27.  
  28. document.getElementById('totaal').innerHTML = "&euro; " + totaal + ",-";
  29.  
  30. }
  31. </script>
  32. <style type="text/css">
  33. <!--
  34. .tekst {
  35. font-family: Arial, Helvetica, sans-serif;
  36. font-size: 12px;
  37. }
  38. -->
  39. </style>
  40. </head>
  41.  
  42. <body>
  43. <form method="post" action="" name="bestellen">
  44.  
  45. <table width="668" height="416" align="center">
  46. <tr>
  47. <td width="102" nowrap class="tekst"> <div align="right">Voornaam :</div></td>
  48. <td width="554" nowrap class="tekst"> <input name="Voornaam" id="Voornaam" type="text" value=""
  49. size="30" maxlength="30" >
  50. (*)</td>
  51. </tr>
  52. <tr>
  53. <td nowrap class="tekst"> <div align="right">Achternaam : </div></td>
  54. <td nowrap class="tekst"> <input name="Achternaam" id="Achternaam" type="text" value=""
  55. size="50" maxlength="50" >
  56. (*)</td>
  57. </tr>
  58. <tr>
  59. <td nowrap class="tekst"> <div align="right">Straat : </div></td>
  60. <td nowrap class="tekst"> <input name="Straat" id="Straat" type="text" value="" size="50"
  61. maxlength="50" >
  62. (*) Huisnr :
  63. <input name="nr" id="nummer" type="text" value="" size="4"
  64. maxlength="4" >
  65. (*) bus :
  66. <input name="bus" id="bus" type="text" value="" size="2"
  67. maxlength="2" > </td>
  68. </tr>
  69. <tr>
  70. <td nowrap class="tekst"> <div align="right">Postnr : </div></td>
  71. <td nowrap class="tekst"> <input name="Postnr" id="postnr" type="text" value="" size="4"
  72. maxlength="4" >
  73. (*) Gemeente :
  74. <input name="Gemeente" id="Gemeente" type="text" value=""
  75. size="35" maxlength="354" >
  76. (*) </td>
  77. </tr>
  78. <tr>
  79. <td nowrap class="tekst"> <div align="right">Provincie: </div></td>
  80. <td nowrap class="tekst"> <select name="Provincie" id="Provincie">
  81. <option value="Antwerpen">Antwerpen</option>
  82. <option value="Limburg">Limburg</option>
  83. <option value="Oost-Vlaanderen">Oost-Vlaanderen</option>
  84. <option value="Vlaams Brabant">Vlaams Brabant</option>
  85. <option value="West-Vlaanderen">West-Vlaanderen</option>
  86. <option value="Hainaut">Hainaut</option>
  87. <option value="Liège">Liège</option>
  88. <option value="Luxembourg">Luxembourg</option>
  89. <option value="Namur">Namur</option>
  90. <option value="Brabant-Wallon">Brabant-Wallon</option>
  91. </select> </td>
  92. </tr>
  93. <tr>
  94. <td nowrap class="tekst"> <div align="right">Telefoon : </div></td>
  95. <td nowrap class="tekst"> <input name="tel" id="telefoon" type="text" value="" size="15"
  96. maxlength="15">
  97. GSM :
  98. <input name="gsm" type="text" value="" size="15" maxlength="15"> </td>
  99. </tr>
  100. <tr>
  101. <td nowrap class="tekst"> <div align="right">Email-adres : </div></td>
  102. <td nowrap class="tekst"> <input name="mail" id="mail" type="text" value="" size="50"
  103. maxlength="100"> </td>
  104. </tr>
  105. <tr>
  106. <td height="39" nowrap class="tekst"> <div align="right">Websiteadres :
  107. </div></td>
  108. <td nowrap class="tekst"> <input type="text" name="firmasite" value="http://"
  109. size="50"> </td>
  110. </tr>
  111. <br>
  112. <br>
  113. <tr>
  114. <td colspan="2" nowrap class="tekst"><table width="100%" border="1">
  115. <tr class="tekst">
  116. <td width="48%"> <div align="right">150 jaar Fietel in kleur (25)
  117. <input name="CheckboxKleur" id="CheckboxKleur" type="Checkbox"
  118. onClick="totaal();" value=false>
  119. </div></td>
  120. <td width="52%"> <div align="right">150 jaar Fietel in Zwart/Wit (20)
  121. <input name="CheckboxZwartWit" id="CheckboxZwartWit"
  122. onClick="totaal();" type="Checkbox" value=false>
  123. </div></td>
  124. </tr>
  125. <tr class="tekst">
  126. <td> <div align="right">Zichtkaarten in aanbieding (25)
  127. <input name="CheckboxZichtkaarten" id="CheckboxZichtkaarten" type="Checkbox"
  128. onClick="totaal();" value=false>
  129. </div></td>
  130. <td>&nbsp;</td>
  131. </tr>
  132. </table></td>
  133. </tr>
  134. <tr>
  135. <td colspan="2" nowrap class="tekst"> <div align="right"></div>
  136. </td>
  137. </tr>
  138. <tr bgcolor="#999999">
  139. <td nowrap class="tekst"> <div align="right"><font color="#000000">Totaal
  140. : </font></div></td>
  141. <td nowrap class="tekst" id="totaal"><font color="#000000"><em>&euro; 0,-</em></font></td>
  142. </tr>
  143. <tr>
  144. <td height="26" nowrap> </td>
  145. <td nowrap><input type="submit" class="inputSubmit" value="Verstuur de bestelling">
  146. <input name="Reset" type="reset" class="inputSubmit" value="Reset"> </td>
  147. </tr>
  148. </table>
  149. </form>
  150. </body>
  151. </html>

2 antwoorden

Gesponsorde links
Offline numlockrond - 20/10/2004 22:17
Avatar van numlockrond Onbekend voeg dit toe aan je reset-knop:

  1. onclick="document.getElementById('totaal').innerHTML='&euro; 0,-';"
Offline Schokkie - 20/10/2004 22:40
Avatar van Schokkie Nieuw lid Super ! Thkx
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.185s