admin管理员组文章数量:1344941
I have this variable:
var _inputs = document.getElementsByTagName('input');
But I want to make a new variable that will select all inputs, except the inputs that have a specific class like ".nothis".
var _newinputs = document.getElementsByTagName('input') && document.getElementsByClass('!nothis');
I have this variable:
var _inputs = document.getElementsByTagName('input');
But I want to make a new variable that will select all inputs, except the inputs that have a specific class like ".nothis".
var _newinputs = document.getElementsByTagName('input') && document.getElementsByClass('!nothis');
Share
Improve this question
edited May 4, 2019 at 2:09
Cœur
38.8k26 gold badges205 silver badges277 bronze badges
asked Aug 19, 2011 at 14:23
Adrian FlorescuAdrian Florescu
4,50210 gold badges52 silver badges77 bronze badges
4 Answers
Reset to default 7document.querySelectorAll('input:not(.nothis)')
Try this code:
var _inputs = Array.prototype.filter.call(
document.getElementsByTagName("input"),
function(obj) {
return obj.className.split(" ").indexOf("nothis")===-1;
});
Try this:
var _inputs = document.getElementsByTagName('input');
var filteredInputs = [];
var re = new RegExp('\\b' + 'nothis' + '\\b'); // or any other class name
for(var i=0; i<_inputs.length;i++) {
if (!re.test(input.className)) { // filter out by class name
filteredInputs.push(_inputs[i]);
}
}
Update: Added regex match to eliminate false positives as per suggestion from katspaugh
In modern browsers you can do
var inputs = document.querySelectorAll('input:not(.nothis)');
本文标签: javascriptJS getElementsByTagName except the one with a specific classStack Overflow
版权声明:本文标题:javascript - JS getElementsByTagName except the one with a specific class - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743778323a2537389.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论