jQuery:目标$(this)和一个元素

时间:2013-08-17 03:58:37

标签: jquery

点击后,我删除了两个元素$(this)$("#foo")

目前我的代码如下:

$(this).remove();
$("#foo").remove();

如何在不重复的情况下优化此功能?我试过了:

$(this, "#foo").remove();

$(this "#foo").remove();

$(this && "#foo").remove();

但它似乎不起作用......

1 个答案:

答案 0 :(得分:5)

您可以使用.add()将当前元素添加到匹配元素集中:

$('#foo').add(this).remove();

我会用冗长的方式代替。它更具可读性。