jquery validate ie8下时间验证失效 和 基于jqueryUI datetimepicker 的时间格式转换

yanyiping 2014-03-26

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搞定

相关推荐

Web全栈笔记 / 0评论 2020-06-15