最近选用了几个日历插件,
data_input ,官方主页:http://www.jonathanleighton.com/projects/date-input/
jdPicker ,官方主页:http://jdpicker.paulds.fr/
由于我的jquery 是1.10.2的版本,发现报错,不支持$.browser和 $.browser.version 方法,用$.support代替。
网上搜到的其他代替方案
检查是否为 IE6:
// Old
if ($.browser.msie && 7 > $.browser.version) {}
// New
if ('undefined' == typeof(document.body.style.maxHeight)) {}
检查是否为 IE 6-8:
if (!$.support.leadingWhitespace) {}
尝试更改了data_input和jdPicker的相关代码后,不报错了。
PS:最后用的日历插件是kalendae,github主页:https://github.com/ChiperSoft/Kalendae,很方便。