In JQuery is possible to do something like:
$( $(this).parent(), $("#myid"), $("li"), ... );
In th开发者_如何转开发is way obviously NOT work, it's only to explain...
From what I can tell, you have one set selected, and you would like to add more elements to that set?
Try JQuery's add() method.
精彩评论