Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
339 views
in Technique[技术] by (71.8m points)

collections - jQuery add elements to empty selection?

Why doesn't this work?

var spans = $();
var elem = document.getElementById('someId');
spans.add(elem);

What is the proper way to start off with an empty collection and add elements to it? I want to loop through a collection of ids and find the element on the page and add it to the matched set.

question from:https://stackoverflow.com/questions/7533929/jquery-add-elements-to-empty-selection

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Quoting from the jQuery website:

Given a jQuery object that represents a set of DOM elements, the .add() method constructs a new jQuery object from the union of those elements and the ones passed into the method.

Hence, when you do .add() it will not save the added elements, you would have to explicitly assign the element to the newly created object i.e

var $elements = $('.elements');
$elements = $elements.add($('#anotherelement'));

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...