Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
午後 1 時から午後 3 時など、数時間の間だけポップアップを表示したいのですが、時間を取得して if else を使用して JavaScript でそれを行うにはどうすればよいですか?
これを試して:
var hours = (new Date()).getHours(); if (hours >= 13 && hours <= 15) { // show popup }