js判斷是否為閏年
阿新 • • 發佈:2019-02-05
index.html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>判斷閏年,平年</title>
<script src="first.js"></script>
</head>
<body>
<input type="text" placeholder="請輸入年份"id="text">
<input type ="button" id="ok" value="確定">
<h1 id="result"></h1>
</body>
</html>
first.js
window.onload=one;//開啟視窗,執行one
function one()
{
document.getElementById("ok").onclick=two; //滑鼠點了id=ok後執行two
function two() //別忘了寫函式名,與上面對應
{
a=document.getElementById("text" ).value;
if(a%4==0&&a%100!=0||a%400==0)
{
document.getElementById("result").innerHTML="this is a 閏年";//等於號,不要寫成了("")
}
else
{
document.getElementById("result").innerHTML="this is a 平年";
}
}
}
效果圖:
轉載請註明