我把头撞到墙上,试图弄清楚为什么这段代码不会运行。函数 isWorkingHour 肯定可以工作,因为我在这里使用它:Working Hours (Working Demo)
任何人都可以帮忙。这是JS代码:
function makecall()
{
if (isWorkingHour(now)) {
//it's in schedule
window.alert("Office is open");
}
else {
window.alert("Office is close");
}
}
function isWorkingHour(now) {
return now.getDay() <= 4 && now.getHours() >= 9 && now.getHours() < 17;
}
我使用的 HTML 如下:
<input type="button" id="CallButton" class="callButton" value="Call" onclick="makecall()" />
<p id="demo">Click the button to check if now is working hours</p>
这是我所坚持的 JSFiddle。http://jsfiddle.net/zfSTj/3