Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
だから私はいくつかの要素(この場合は<a>要素)を含むいくつかのjqueryオブジェクトを含む変数を持っています
var elements = $('a');
次に、たとえばクリック関数を使用するときに、この文字列に他の要素(この場合は<b>要素)を追加します...
elements.and('b').on("click", function(){ //some random code });
これを行う方法はありますか?
追加をお探しですか?
elements.add('b')....
それもそうなることに注意してください$('a, b');。
$('a, b');