Начало
Часы
Будущая Дата
Вы можете сказать клиенту, что их заказ будет заполнен датой в будущем и т.д.
JavaScript Clocks: Будущая Дата
<!-- TWO STEPS TO INSTALL FUTURE DATE: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <SCRIPT language="JavaScript"> <!-- Begin function AddDays(form) { DaysToAdd=document.form.DaysToAdd.value; var now=new Date(); var newdate=new Date(); var newtimems=newdate.getTime()+(DaysToAdd*24*60*60*1000); newdate.setTime(newtimems); document.form.display.value=newdate.toLocaleString(); } // End --> </SCRIPT> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <center> <form name=form> <input type=text name=DaysToAdd size=5 value=10> <input type=button value="days from today will be..." onclick="AddDays(this.form)"> <input type=text name="display" size=35 value=""> </form> </center> <!-- Script Size: 1.02 KB -->