我需要祝朋友过生日,所以我打算告诉我的朋友打开一个网页@ 11.55,当时间变成12.00我需要自动将我朋友的页面重定向到我的问候页并帮助我做任务
答案 0 :(得分:1)
使用javascript进入朋友的页面
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<script type="text/javascript">
function greetings(){
var now =new Date();
if (now.getHours()===0 && now.getMinutes()===0) window.location.href='http://google.com';
}
setInterval(greetings,10000);
</script>
</head>
<body>
</body>
</html>