我所拥有的是<div#graphicsCloseBox>
嵌套在里面<div#catbox>
。应该是当您单击 时,类会变回来。我不能使用toggleClass,因为框内有一个表单输入,所以单击表单会搞砸。
$('#catbox').click(function() {
$(this).removeClass('cat');
$(this).addClass('cat2');
});
$('#graphicsCloseBox').click(function() {
$('#catbox').removeClass('cat2');
$('#catbox').addClass('cat');
});
如果您想要一个示例,请查看http://codepen.io/rtro92/pen/mihlu 但这非常简单。我知道我的问题出在第二个函数中,我只是无法定位#catbox。谢谢!