2024年1月25日 星期四

JS~依照日期來變換背景

 因為要依照日期,所以要建立今天日期來跟某些特定日期做比對。要放在<script language="JavaScript"> 程式碼放這裡 </script>

今天日期
let today1 = new Date();

特定日期
let thatDay2 = new Date('2024-1-8 23:59:59')
let thatDay3 = new Date('2024-2-9 23:59:59')

做比對

if (today1 <= thatDay2) {

wel.document.write('<body bgcolor=#FFFFFF>'); 

}else if (today1 <= thatDay3){

wel.document.write('<body bgcolor=#UUUUUU>'); 

}else{

wel.document.write('<body bgcolor=#CCCCCC>');

}

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。