当第二次单击按钮以关闭展开的 div 时,如何恢复 CSS 更改?
$(document).ready(function(){
$("#sec_add").hide();
$("#second_address").show();
$('#second_address').click(function(){
$("#sec_add").slideToggle();
$('.vertical').css('height','2106px');
$('#content_main').css('height','2249px');
});
});
或者也许用 toggleClass() 做点什么?
$( "#second_address" ).click(function() {
$( this ).toggleClass( "second_vertical_line" );
});