不知何故,firefox对于类似“2010-12-20 15:55:00”这种时间的转换格式不感冒,返回Nan,查了查资料,把“-”替换为“/”就可以了;
<mce: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("对不起,输入时间不能晚于当前时间!"); } // --></mce:script>