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.
我想知道在对它们运行函数之前是否可以使用 $(this) 以及类选择器。
所以与其做;
$(this).toggleClass('open'); $('.closed').toggleClass('open');
做一些更像;
$(this, '.closed').toggleClass('open');
而实际上,上面将在“.close”的上下文中选择“this”
问候,
您可以使用add():
add()
$(".closed").add(this).toggleClass("open");
它将元素添加this到匹配元素的集合中(即.closed)。
this
.closed