如何更改 jquery 日期选择器在更改为上个月时的工具提示?
How to change the tooltip of jquery datepicker when changing to prev month?
在jquery日期选择器中,当我们将鼠标悬停在选择上个月的小三角形上时。显示的工具提示是 "Prev",我想将工具提示更改为 "Previous"。
如何更改工具提示文本?
$('#dateitem').datepicker({
beforeShowDay: function(date) {
return [true, 'highlight', 'The custom title'];
},
});
您可以使用选项 prevText
更改用于 "previous" 的文本
$( ".selector" ).datepicker({
prevText: "Previous"
});
在jquery日期选择器中,当我们将鼠标悬停在选择上个月的小三角形上时。显示的工具提示是 "Prev",我想将工具提示更改为 "Previous"。 如何更改工具提示文本?
$('#dateitem').datepicker({
beforeShowDay: function(date) {
return [true, 'highlight', 'The custom title'];
},
});
您可以使用选项 prevText
$( ".selector" ).datepicker({
prevText: "Previous"
});