我想验证日期字段日历,其中日历中的日期无法选择为大于今天。以下代码位于eval字段的提示中,如“
将名为'return'的变量设置为true,以阻止此日期被选中。
var diff = new Date()。compare(new Date(date)); var result = diff< 0? true:false;
现在我想要相同的预期结果,即日历中的日期不能比今天更大。
答案 0 :(得分:1)
var result = new Date() < new Date(date);
答案 1 :(得分:1)
通过Pawan的回应扩展Darin Dimitrov的答案。
inputField.onchange = function(){
return (new Date() < new Date(this.value))? true: this.value = "";
}