如果页面上有多个具有相同值的输入字段,使用jQuery检查的最简单方法是什么?
谢谢你们!
最佳答案
您可以迭代所有input
元素,将其值存储在哈希表中,并检查该值是否已存在:
var hash = Object.create(null),
result = [].some.call(document.getElementsByTagName('input'), function(inp) {
if(hash[inp.value]) return true;
hash[inp.value] = true;
});
关于javascript - 检查是否存在多个具有相同值的输入字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31501247/