LSRONG-双荣设计
扫描二维码添加QQ好友

扫一扫二维码,加我QQ

Date.parse Firefox返回Nan的解决办法

2016-03-27 11:03:04ecshop常见问题

不知何故,firefox对于类似“2014-09-03 15:55:00”这种时间的转换格式不感冒,返回Nan,里奥模板中心(www.68ecshop.com)技术经过研究解决,把“-”替换为“/”就可以了;
<script type=”text/javascript”>

<!–

var inputDate=”2010-12-20 15:55:00″;inputDate=inputDate.replace(“-”, “/”).replace(“-”, “/”);var nowDate=new Date();//alert(Date.parse(inputDate))//alert(Date.parse(nowDate))if(Date.parse(inputDate)<Date.parse(nowDate)){alert(“对不起,输入时间不能晚于当前时间!”);}
// –>

</script>

文章关键词