我試圖用另一個Intranet站點替換一個選取框,但僅在8和12之間的星期五進行火警測試。 以下是JSFiddle上的代碼:http://jsfiddle.net/bmgh1985/7dKcN/(我想結束的版本也在那裏,但更多的是爲了清晰起見,而不是永久性地在頁面上) 這裏是我到目前爲止所使用的jQuery:在某個特定時間每週替換HTML的函數
function firealarm() {
var d = new Date();
var x = d.getday();
var n = d.getHours();
if (n > 8 && n < 12 && x = 5)
$(‘.marqueeframe’).replaceWith('<marquee behavior="scroll" direction="left" scrollamount="5"><div class="falarm">The Fire Alarm will be tested this morning</div>><div class="falarm">The Fire Alarm will be tested this morning</div>><div class="falarm">The Fire Alarm will be tested this morning</div></marquee>');
}
window.onload = firealarm;
任何幫助,將不勝感激! Cheers
邏輯應該是x === 5您將x分配給5 – raam86