我有一个小问题。有没有可能用jquery恢复功能?我有一些点击功能,中间有动作。我可以在点击之前将此元素恢复为条件吗?谢谢 4 帮助。
$('.bottom_panel_button_02').click(function(){
$('#recipe_panel').css('opacity','1');
$('.default_clock, .info_top_panel .random_title, .bottom_panel_button_06').css('display','none');
$('.bottom_main_panel_button').css('background','url("img/ap_bottom_panel_button_white.png") center bottom no-repeat')
setTimeout(function(){
$('.arrow_up, .arrow_down').fadeIn(300);
},500);
$('.main_content, .oven_panel').fadeOut(200);
});