我正在使用.remove
inside.bind
来关闭一个对话窗口。我希望窗口 ( .another_one
) 到.fadeOut
,但我无法弄清楚在哪里放置代码。
我尝试将 .fadeOut 添加到代码中的各个位置,但它破坏了功能(保留再次打开窗口而不刷新页面的能力)。就目前的代码而言,窗口会立即关闭:
$("body").append(the_empty);
the_empty.hide();
the_empty.bind("click", function(){
$(".another_one").remove();
$(this).hide();
});