首页上一页 1 下一页尾页 1 条记录 1/1页
用浏览器运行,出现不了结果
发表在JavaScript图书答疑
2017-09-03
《JavaScript从入门到精通(第2版)》第2章 JavaScript基础
是否精华
是
否
版块置顶:
是
否
<html>
<head><title>第一个javascript</title></head>
<body>
<h1>当前日期和时间</h1>
<p>
<script language="JavaScript" type="text/javascript" >
now=new Date();
localtime=now.toString();
utctime=now.toGMTString();
document.write("<b>当前时间:"</b>+localtime+"<br>");
document.write("<b>当前时间:"</b>+utctime+"<br>");
</script>
</p>
</body>
</html>
用浏览器运行,出现不了结果