-2

コードのセットは次のとおりです。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 

<html xmlns="www.w3.org/1999/xhtml" xml:lang="en">


<title>Lots of Time</title>
<body>
<h1>Times</h1>
<script "type/javascript">
now = new Date();
localtime = now.toString();
utctime = now.toGMTString();
hours = now.getHours();
mins = now.getMinutes();
secs = now.getSeconds();
milli = now.getMilliseconds();
document.write("<h2>Local time:</h2> " + localtime + "<br/>");
document.write("<h2>UTC time</h2> " + utctime);
document.write("<h1>");
document.write(hours + ":" + mins + ":" + secs + ":" milli);
document.write("</h1>");
document.write("<h1>");
document.write(hours + ":" + mins + ":" + secs + ":" milli);
document.write("</h1>");
</script>

</body>
</html>

getMilliseconds();で行を追加するまで、すべてが正常に機能しました。

どんな助けでも大歓迎です。よろしくお願いいたします。エリン

4

2 に答える 2

1

次のようにプラス記号を追加します。

document.write(hours + ":" + mins + ":" + secs + ":" + milli);
于 2013-01-06T00:42:17.737 に答える
1

変化する

document.write(hours + ":" + mins + ":" + secs + ":" milli);

document.write(hours + ":" + mins + ":" + secs + ":" + milli);
于 2013-01-06T00:42:35.190 に答える