gpt4 book ai didi

javascript - jQuery UI 日期范围选择器数字格式

转载 作者:行者123 更新时间:2023-11-28 19:46:47 24 4
gpt4 key购买 nike

是否可以选择在一个字符的数字前面添加“0”?

即:1、2、3、4、5、6、7、8、9

变成:01, 02, 03, 04, 05, 06, 07, 08, 09

enter image description here

最佳答案

工作示例:http://jsfiddle.net/Gajotres/EHNab/

JavaScript:

$(document).ready(function () {
$('#datepicker').datepicker({
beforeShowDay: function (date) {
var dayOfMonth = date.getDate();
if (dayOfMonth >= 1 && dayOfMonth <= 9) {
return [true, 'ui-change-format', ''];
}
return [true, '', ''];
}
});
});

CSS:

.ui-change-format a::before { 
content: "0";
}

关于javascript - jQuery UI 日期范围选择器数字格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24139000/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com