Love beautiful code? We do too.
Phương thức date getMilliseconds() trong Javascript trả về mili giây của ngày đã cho theo Local time. Giá trị được trả về bởi getMilliseconds() là một số giữa 0 và 999.
Cú pháp của nó như sau:
Date.getMilliseconds()
Trả về giá trị
<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>
Kết quả
getMilliseconds() : 261
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời