我有一些查询要显示和隐藏一个框。使用的 btn "normal-btn.interest" 是触发器,您可以单击画布 $(document) 以关闭 btn。
有人可以解释一下我如何将“normal-btn.interest”按钮添加到 jquery 中以关闭框以及拥有
$(document
$('.normal-btn.interest').click(function(e){
// Prevent the event from bubbling up the DOM tree
e.stopPropagation();
$('.categories-wrap').fadeIn();
});
$(document, '.normal-btn.interest').click(function(){
$('.categories-wrap').fadeOut();
});