<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>闰年</title>
</head>
<body>
请您输入年份<input type="text"><br>
<input type="button" value="确认">
</body>
<script>
//闰年:年份能被400整除或者能被4整除但是不能被100整除
var inps = document.querySelectorAll("input");
inps[1].onclick = function(){
var year = Number(inps[0].value);
if((year % 400 == 0)||(year % 4==0 && year % 100 !=0)){
alert("您输入的是闰年");
}else{
alert("您输入的是平年");
}
if(year % 400 ==0){
alert("闰年");
}else if(year % 4 == 0 ){
if(year % 100 != 0){
alert("闰年");
}
}else{
alert("平年");
}
}
</script>
</html>
javascript判断用户输入的年份是否是闰年
最新推荐文章于 2024-10-05 17:50:03 发布