jquery 比较日期
我有以下代码,尽管我有 DateTo
的 01-Jan-2009
和 03-Jan-2009
>DateFrom 它将值读取为 NAN
。我错过了什么吗?我正在参考
var DateToValue = $("#DateTo").val();
var DateFromValue = $("#DateFrom").val();
if (Date.parse(DateToValue) <= Date.parse(DateFromValue)) {
$("#DateFrom").val(DateToValue)
}
<脚本 src="@Url.Content("~/Scripts/jquery.validate.js")" 类型 =“text/javascript”>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
这个怎么样?
How about this?
最简单的方法是
The Easy Way to Do is
使用 DateJS 解析您的日期。 http://www.datejs.com/
只需将脚本包含在您的 html 中即可。
Use DateJS for parsing your date. http://www.datejs.com/
just include the script in your html.
我与当前日期的比较
My Comparison with the current date
我认为我的回答已经晚了,请告诉我它是否更好,因为只有这在 v1.10 中对我有效:
I think my answer is late, tell me if it is better or not as only this worked for me in v1.10:
您可以使用下面的代码来解析日期,使用毫秒方法(添加一天中存在的毫秒)对于夏令时将无法正常工作。
you can use below code to parse through the dates, using the millisecond approach (adding milliseconds present in a day) will not work properly for the daylightsaving.
这里有一个简单的java脚本的简化方法
here's more a simplified way from simple java script