我在我的网站上有一个表格,可以验证 18 岁以上的任何人。
var day = $("#dobDay").val();
var month = $("#dobMonth").val();
var year = $("#dobYear").val();
var age = 18;
var mydate = new Date();
mydate.setFullYear(year, month-1, day);
var currdate = new Date();
currdate.setFullYear(currdate.getFullYear() - age);
var output = currdate - mydate
if ((currdate - mydate) > 0){
// you are not 18
}
但它的工作方式完全相反。我希望 if 语句在用户未满 18 岁时采取行动。
提前谢谢你的帮助