x
1
<p>点击按钮返回符合大于输入框中指定数字的数组元素。</p>
2
<p>最小年龄: <input type="number" id="ageToCheck" value="18"></p>
3
<button onclick="myFunction()">点我</button>
4
5
<p>值: <span id="demo"></span></p>
6
7
<p><strong>注意:</strong> IE 11 及更早版本不支持 findIndex() 方法。</p>
8
9
<script>
10
var ages = [4, 12, 16, 20];
11
12
function checkAdult(age) {
13
return age >= document.getElementById("ageToCheck").value;
14
}
15
16
function myFunction() {
17
document.getElementById("demo").innerHTML = ages.find(checkAdult);
18
}
19
</script>