问答详情
源自:7-5 返回/设置时间方法

请问哪里出错了?

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>日期对象 </title>
<script type="text/javascript">
 var mydate=new Date();
  document.write("当前时间:"+mydate+"<br/>");
  mydate.setTime( myate.getTime()  + 2* 60 * 60 * 1000);
  document.write("推迟二小时时间:" +mydate);
</script>
</head>
<body>
</body>
</html>

提问者:暴走小短腿儿 2019-01-16 08:20

个回答

  • 慕仔1561325
    2019-01-16 12:16:06
    已采纳

    https://img3.mukewang.com/5c3eafd50001baa105230488.jpg

    mydate拼错了兄弟

  • 暴走小短腿儿
    2019-01-16 15:10:48

    谢谢了