急求!JSP页面,使用脚本信息判断当前时间,并按照时间段输出"早上"、“中午”、“下午”、“晚上”等信息
展开全部
js:写在head里面:
<script>
var da = new Date();
function show(){
var hournow=da.getHours();
if(hournow<8){
document.getElementById("today1").value="早上";
}
if(8<= hournow<12){
document.getElementById("today1").value="上午";
}
if(12<=hournow<=13){
document.getElementById("today1").value="中午";
}
if(13<hournow<=18){
document.getElementById("today1").value="下午";
}
if(hournow>18){
document.getElementById("today1").value="晚上";
}
setTimeout("show()",10000);//每隔10秒执行一次
}
</script>
body里面:
<body onload="show()">
<input type="text" id="today1" />
</body>
<script>
var da = new Date();
function show(){
var hournow=da.getHours();
if(hournow<8){
document.getElementById("today1").value="早上";
}
if(8<= hournow<12){
document.getElementById("today1").value="上午";
}
if(12<=hournow<=13){
document.getElementById("today1").value="中午";
}
if(13<hournow<=18){
document.getElementById("today1").value="下午";
}
if(hournow>18){
document.getElementById("today1").value="晚上";
}
setTimeout("show()",10000);//每隔10秒执行一次
}
</script>
body里面:
<body onload="show()">
<input type="text" id="today1" />
</body>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询