Nieuw lid |
|
Hallo,
Heb het volgende:
<script type="text/javascript">
<!--
var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
//-->
</script>
<select>
<option><script type="text/javascript">document.write(day)</script></option>
<option>01</option>
<option>02</option>
...
</select>
<select>
<option><script type="text/javascript">document.write(month)</script></option>
<option>01</option>
<option>02</option>
....
</select>
<select>
<option><script type="text/javascript">document.write(year)</script></option>
</select>
<script type="text/javascript"> <!-- var currentTime = new Date() var month = currentTime.getMonth() + 1 var year = currentTime.getFullYear() //--> </script> <select> <option><script type="text/javascript">document.write(day)</script></option> <option>01</option> <option>02</option> ... </select> <select> <option><script type="text/javascript">document.write(month)</script></option> <option>01</option> <option>02</option> .... </select> <select> <option><script type="text/javascript">document.write(year)</script></option> </select>
Toon nu de huidige datum in een option html tag. Nu zou ik een scriptje willen, waarmee ik 7 werkdagen verder kan tellen.
En die datum dan tonen in de option tag.
7 Werkdagen dwz. rekening houden met week-end dagen en feestdagen.
Iemand een idee hoe eraan te beginnen, of heeft iemand een voorbeeldje?
mvg
|