2024年3月28日 星期四

學到一些JS技巧




建立加幾天的函式,感謝Summer分享。
Date.prototype.addDays = function(days) {
  this.setDate(this.getDate() + days);
  return this;
}
var today = new Date();
today.addDays(7)

if else 低級錯誤@@感謝 Greta分享,雙條件要用&&, if ( 3 < b  && b < 5 ) 
想要在某個時間點換圖,結果一直卡在 else if ( today <= cherry )
{ document.getElementById("imgs").innerHTML = idimags; }
今天的時間 < cherry生日,就顯示某圖。而我是想要 cherry生日時(與之後)都顯示圖。所以要設限制為 else if ( today <= cherry ) {上個壽星的圖 } else { chery 的圖 } 或是雙條件
else if ( cherry<= today && today <= 下個壽星日期 ) { 顯示cherry圖 }

 利用JS來轉址感謝Vivian分享
window.location.href = 'https://www.ccc.ooo';







沒有留言:

張貼留言

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