作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要在 jQuery UI 日期选择器中显示前导零:
例如,
1 2 3 4 5 6 7 8 9 10
-> 01 02 03 04 05 06 07 08 09 10
与此类似的问题:
http://forum.jquery.com/topic/displaying-leading-zero-for-day-numbers-of-datepicker
也许有人有解决方法?
最佳答案
这是我的黑客解决方案。有用! :)
我们可以结合使用 CSS 和 JavaScript。有一个 datepicker
事件 beforeShowDay
我们可以在我们的方法中利用它。
CSS:
.ui-datepicker-calendar td.zero a:before {
content: "0";
}
JavaScript:
$("input").datepicker({
beforeShowDay : function(date) {
var day = date.getDate();
return [true, (day < 10 ? "zero" : "")];
}
});
关于jQuery UI 日期选择器 : Is there a way to display leading zeros in the dialog?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10799099/
我是一名优秀的程序员,十分优秀!