jquery validate ie8下时间验证失效 和 基于jqueryUI datetimepicker 的时间格式转换
1. jQuery UI 有一款插件 jquery.ui.datepicker-zh-CN.js,这个是日期选择,
基于需求加入了 jquery-ui-timepicker-addon.js 时间选择
jQuery版本:jquery-1.7.2.min.js
jQuery UI版本jquery-ui-1.8.21.custom.min.js
以上环境中,时间插件chrome和IE均报错
Error parsing the date string: Extra/unparsed characters found in date: 00:00:00 date string = 2014-03-26 00:00:00 date format = yy-mm-dd
将jQuery UI 版本升级为jquery-ui-1.9.1.custom.js 解决
2.校验使用的插件版本为
jQuery validation plug-in 1.7
结果在ie8下各种bug,其中有一个关于时间插件的报错,一直显示无效的时间
将jQuery validation版本升级为 jQuery Validation Plugin 1.11.1
rules : { "beginDate" :{ required : true, date : false },//开始日期 "endDate" :{ required : true, date : false, compareDate: "beginDate" }//结束日期 },//表单验证
date:false
ie8和chrome搞定
相关推荐
tztzyzyz 2020-07-20
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
83510998 2020-07-18
81463166 2020-07-17