如何在点击时使用 jquery 从许多 div 中隐藏/删除一个 div?下面的代码重复装箱:
var el = $("div");
var bottom = $(window).height();
while (el.offset().top + el.height() < bottom) {
el = el.clone().insertAfter(el);
我正在尝试使用下面隐藏/删除 div 元素但它不起作用?
$(document).ready(function(){
$("div").click(function(){
$(this).hide();
});
});