<script language=vbs>
dim currentDay
currentDay = now()
document.write "现在起24天以后的时间:"
document.write DateAdd("d",24,currentDay)
document.write "<br>现在起12小时以前的时间:"
document.write DateAdd("h",-12,currentDay)
document.write "<br>现在起1周以后的时间:"
document.write DateAdd("ww",1,currentDay)
</script>