您好,我想知道是否有一种方法可以点击此处的某些内容使用该变量后,我可以淡出所有其他框并淡入淡出。否则,我将不得不通过单击 id 来创建 6 个单独的函数,这将使其代码更多我基本上想要一种将它们合并为一个的方法。我很感激任何和所有的帮助已经研究了一段时间,但似乎无法弄清楚也许获得另一个视角会有所帮助
jQuery(function(){
jQuery(".catalignleft").click(function() {
function complete() {
jQuery(".alignleft");
}
if(status == 1) {
jQuery("#box1").fadeOut();
jQuery("#box2").fadeOut();
jQuery("#box3").fadeOut();
jQuery("#box4").fadeOut();
jQuery("#box5").fadeOut();
jQuery("#box6").fadeOut();
jQuery("#box1").fadeIn();
status--;
} else{
jQuery("#box1").fadeIn(1600, "linear", complete);
status++;
}
});
jQuery("#btn2").click(function() {
jQuery("#box1").fadeOut();
jQuery("#log").empty();
});
jQuery(".blocked a").click(function(event) {
event.preventDefault();
jQuery('<div/>')
});
jQuery("#btn2").click(function() {
jQuery("#box2").fadeOut();
jQuery("#log").empty();
});
});