我已经为datepicker设置了以下内容。我已经添加了TH JS。
https://github.com/jquery/jquery-ui/blob/master/ui/i18n/datepicker-th.js
它显示了TH Month Name&天。但不是一年
$.datepicker.setDefaults( $.datepicker.regional[ "th" ] );
var currentTime = new Date();
var year = currentTime.getFullYear();
// Birth date
$("#date-of-birth").datepicker({
changeMonth: true,
changeYear: true,
yearSuffix: year+543,
yearRange: '-100:+0',
dateFormat: 'dd/mm/yy'
});
因为在TH。
29/03/2018 (EN) -> 29/03/2561 (TH)
泰国当年 - 543
[更新]
它显示在年份前缀中,但不在年份范围内。
答案 0 :(得分:1)
我已经尝试过并且有效 https://codepen.io/titan_dl_1904/pen/rdJmyL
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/i18n/datepicker-th.js"></script>
</head>
<body>
<p>Date: <input type="text" id="date-of-birth"></p>
我错过了什么吗?
修改强>
设定年份范围yearRange: '+443:+543'
将当前年份设置为结束范围年度
var currentDate = new Date();
currentDate.setYear(currentDate.getFullYear() + 543);
$('#date-of-birth').datepicker("setDate",currentDate );