gpt4 book ai didi

javascript - 如何定位页面上的所有输入?

转载 作者:搜寻专家 更新时间:2023-11-01 05:00:16 25 4
gpt4 key购买 nike

<分区>

我正在尝试定位页面上的所有输入 type="number" 但是只有第一个被触发。有谁知道为什么以及如何定位所有输入元素?

我的JS:

// Select your input element.
var numInput = document.querySelector('input');

// Listen for input event on numInput.
numInput.addEventListener('input', function(){
// Let's match only digits.
var num = this.value.match(/^\d+$/);
if (num === null) {
// If we have no match, value will be empty.
this.value = "";
}
}, false)

My jsFiddle

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com