Love beautiful code? We do too.
Phương thức date setYear() trong Javascript Thiết lập năm cho ngày đã cho theo Local time. Bạn dùng setFullYear để thay thế.
Cú pháp của nó như sau:
Date.setYear(yearValue)
Ghi chú − Các tham số trong dấu ngoặc đơn luôn là tùy ý.
Chi tiết về tham số
<html>
<head>
<title>JavaScript setYear Method</title>
</head>
<body>
<script type="text/javascript">
var dt = new Date( "Aug 28, 2008 13:30:00" );
dt.setYear( 2000 );
document.write( dt );
</script>
</body>
</html>
Kết quả
Mon Aug 28 2000 13:30:00 GMT+0530 (India Standard Time)
Xem thêm
Hoclaptrinh.vn © 2017
From Coder With
Unpublished comment
Viết câu trả lời