本帖最后由 980041382 于 2021-9-17 14:51 编辑
[HTML] 纯文本查看 复制代码 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>判断是不是闰年</title>
<script>
function isLeapYear(year) {
if (year%4===0&&year%100!==0&&year%400===0){
result.value='是闰年'
}else {
result.value='非闰年'
}
}
</script>
</head>
<body>
请输入年份:<input type="text" value="" id="year" name="year"><br>
判断:<input type="text" name="result">
<input type="button" value="判断是否闰年">
</body>
</html>
为什么会抛出Uncaught ReferenceError: result is not defined的错误呀 求助 |