Love beautiful code? We do too.
Phương thức date setUTCDate() trong Javascript Thiết lập ngày của tháng cho ngày đã cho theo Universal time.
Cú pháp của nó như sau:
Date.setUTCDate(dayValue)
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 setUTCDate Method</title>
</head>
<body>
<script type="text/javascript">
var dt = new Date( "Aug 28, 2008 23:30:00" );
dt.setUTCDate( 20 );
document.write( dt );
</script>
</body>
</html>
Kết quả
Wed Aug 20 2008 23: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