2023-09-01 10:48AM
参考:https://api.jqueryui.com/datepicker/
月份名称和日期名称默认是英文
<script>
$( function() {
$( "#datepicker" ).datepicker({dateFormat: "yy-mm-dd"});
} );
</script>
根据下面的代码进行修改,就可以把月份名称和日期名称修改为中文
<script>
$( function() {
$( "#datepicker" ).datepicker({
dateFormat: "yy-mm-dd",
dayNamesMin: [ "日", "一", "二", "三", "四", "五", "六" ],
monthNames: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" ]
});
} );
</script>
登录
请登录后再发表评论。
评论列表:
目前还没有人发表评论