我想将javascript中的日期与我在下面的代码中使用的时间进行比较
var pfrmdt = Date.parse(frmdt);
var ptodt = Date.parse(todt);
alert(pfrmdt)
alert(ptodt)
if(pfrmdt <= ptodt)
{
return true;
}
else{
alert(msg);
focusCtrl.value="";
focusCtrl.focus();
}
但它只与日期比较,而不是与时间比较