控制窗口打開日期
發(fā)布時(shí)間:2008-12-19 閱讀數(shù): 次 來源:網(wǎng)樂原科技
--------------------------------------------------------------------------------
腳本說明:
第一步:把如下代碼加入區(qū)域中
<script language="JavaScript">
</script>
第二步:新建hi.htm文件,其內(nèi)容為如下代碼:
<script language="javascript">
function openOrClose() {
var beginDateAndTime="200006250000" //起始時(shí)間,格式為:年,月,日,時(shí),秒
var endDateAndTime="200008310000" //結(jié)束時(shí)間(本例設(shè)定在2000年才彈出)
var aTime = new Date()
var thisYear = aTime.getYear()
var thisMonth = aTime.getMonth() + 1
var thisDate = aTime.getDate()
var thisHour = aTime.getHours()
var thisMinute = aTime.getMinutes()
var thisDateAndTime = (thisYear*100000000)+(thisMonth*1000000)+(thisDate*10000)+(thisHour*100)+thisMinute
if (thisDateAndTime <= beginDateAndTime || thisDateAndTime >= endDateAndTime) {
self.close()
}
}
</script>
本窗口只在2000年7月份打開
你可以任意更改時(shí)間設(shè)置