Love beautiful code? We do too.
Phương thức date toLocaleDateString() trong Javascript biến đổi ngày thành chuỗi, sử dụng qui ước của Locale hiện tại.
Cú pháp của nó như sau:
Date.toLocaleString()
Trả về giá trị
Trả về ngày dưới dạng chuỗi, sử dụng qui ước của Locale hiện tại
<html>
<head>
<title>JavaScript toLocaleDateString Method</title>
</head>
<body>
<script type="text/javascript">
var dt = new Date(1993, 6, 28, 14, 39, 7);
document.write( "Formated Date : " + dt.toLocaleDateString() );
</script>
</body>
</html>
Kết quả
Formated Date : 7/28/1993
Xem thêm
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời