js(javascript)は現在の時間、分、秒及びミリ秒を取得します.
1327 ワード
まずnewのdateオブジェクトが必要です.
var d = new Date();
その後、現在の時間を取得します.d.getHours()
現在の分を取得:d.getMinutes())
現在の秒を取得:d.getSeconds()
現在のミリ秒を取得:d.getMilliseconds()
すべてのコードは以下の通りです.<script type="text/javascript"> var d = new Date(); document.write('
:'+d.getHours()); document.write('
:'+d.getMinutes()); document.write('
:'+d.getSeconds()); document.write('
:'+d.getMilliseconds()); script>