2
$("#bbody").children().not("#" + pageid && "#show")

这样的事情可能吗?

4

5 回答 5

4

您可以使用逗号选择器:

.not("#show, #" + pageid);

或使用两次通行证:

.not("#show").not("#" + pageid);
于 2012-05-13T10:45:20.740 回答
0

只需在两个 id 之间放一个逗号,它将适用于两个元素

$("#bbody").children().not("#" + pageid + ",#show")
于 2012-05-13T10:45:24.763 回答
0

对于 multi not条件,您需要放入要避免的选择器内。
对于选,为每个条件添加一个逗号。

$("#bbody").children().not("#" + pageid + ",#show");
于 2012-05-13T10:46:16.493 回答
0

你可以试试....它的工作

$("#bbody").not('#' + pageid).not('#show')
于 2012-05-13T10:46:28.837 回答
0

是的,使用逗号:

$("#body").children().not("#" + pageid + ", #show")
于 2012-05-13T10:47:07.127 回答