我有一個index.html
,在此文件中,我編寫代碼以便在此顯示一條消息「hello」。我的目標是實現顯示三種消息的代碼:「早上好」,「晚上好」和「晚安」。如何通過Javascript中的if語句顯示消息
跟隨我的代碼:
<p id="show_time" class="time"></p>
<script>
window.onload = show_time('show_time');
function show_time(id) {
h = date.getHours();
if h == 22 {
document.getElementById(id).innerHTML = "hello";
}
setTimeout('show_time("' + id + '");','1000');
return true;
}
}
在這段代碼中我只寫了一個情況。類,時間是包含字體大小和字體系列的css
屬性。 h
獲取當前小時,如果h
爲22,則將輸出「hello」。但這不起作用。
如果您可以提供顯示三種消息類型的代碼,它非常有用。
謝謝
'H> 0 &&ħ<= 16'節目( 「早上好」)。 「h> 16 && h <= 20」表演(「晚上好」)。 'h> 20 && h <= 24'表演(「晚安」)。像這樣? –
寫在如果不合格。 'if(h == 22){// your code}' –
if(h == 22){will工作 –