在ASP.NET MVC 5应用程序中,如何获取客户端计算机的日期时间格式?为了澄清,我希望得到任务栏上客户端机器中使用的Windows时间格式。
<script>
$('.datepick').each(function () {
$(this).datepicker({
changeMonth: true,
changeYear: true,
dateFormat: "dd/mm/yy",
yearRange: "-90:+00"
});
});
</script>