Javascript:判斷使用者輸入的年份是否是閏年
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>題目一:判斷輸入的年份是否是閏年</title>
</head>
<body>
<!--題目一:判斷輸入年份是否是閏年-->
<input type="text" id="text" />
<input type="button" id="button" value="判斷" onclick="panduan()"/>
<input type="text" id="text1"/>
<script type="text/javascript">
function panduan(){
var year = Math.floor(document.getElementById('text').value);
if( (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0) )
{
document.getElementById('text1').value = '是閏年';
}
else
{
document.getElementById('text1').value = '不是閏年';
}
}
</script>
</body>
</html>