CSS > 新さっぽろ60+One

JavaScript

4.条件処理 <15p>


<script type="text/javascript">
<!--
day =new Date().getHours();
if (day <=12) {
document.write("おはよう");
document.bgColor="aqua";
}
else if (day <= 18) {
document.write("こんにちは");
document.bgColor="yellow";
}
else if (day <= 21) {
document.write("こんばんは");
document.bgColor="green";
}
else{
document.write("おやすみ");
document.bgColor="blue";
}
//-->
</script>