DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> JavaScript中的getMilliseconds()方法使用詳解
JavaScript中的getMilliseconds()方法使用詳解
編輯:JavaScript基礎知識     

 javascript Date.getMilliseconds()方法按照本地時間返回指定日期的毫秒數。通過getMilliseconds返回的是一個介於0和999的值。
語法

Date.getMilliseconds()

下面是參數的詳細信息:

  •     NA

返回值:

按照本地時間返回指定日期的毫秒數。
例子:

<html>
<head>
<title>JavaScript getMilliseconds Method</title>
</head>
<body>
<script type="text/javascript">
  var dt = new Date( );
  document.write("getMilliseconds() : " + dt.getMilliseconds() ); 
</script>
</body>
</html>

這將產生以下結果:

getMilliseconds() : 578 

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved