寻找一个简单的jQuery代码,它将安排JavaScript代码(用于Pure Chat的JavaScript)。 JavaScript代码应该在格林尼治标准时间9点到5点30分运行。
所以它应该是这样的:
JQ function (mo - fr, 9 - 5:30) {
js window.purechatApi etc
}
答案 0 :(得分:0)
您可以使用以下javascript代码来确定当天。 getDay()函数返回0到6之间的数值,分别是星期日到星期六的天数。你必须添加
var d = new Date();
var n = d.getDay();
if(n >=1 && n<=5)
{
// 1 for monday and 5 for friday
// your code to check date and time
var currentD = new Date();
var startChat = new Date();
startChat.setHours(9,00,0); // 9.00 am
var endChat = new Date();
endChat.setHours(17,30,0); // 5.30 pm
if(currentD >= startChat && currentD < endChat ){
console.log("yes!");
}else{
console.log("chat off");
}
}