Love beautiful code? We do too.
Phương thức date getSeconds() trong JavaScript trả về giây của ngày đã cho theo Local time. Giá trị được trả về bởi getSeconds() là một số integer giữa 0 và 59.
Cú pháp của nó như sau:
Date.getSeconds()
Trả về giá trị sau:
<html>
<head>
<title>JavaScript getSeconds Method</title>
</head>
<body>
<script type="text/javascript">
var dt = new Date( "December 25, 1995 23:15:20" );
document.write("getSeconds() : " + dt.getSeconds() );
</script>
</body>
</html>
Kết quả
getSeconds() : 20
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời