【发布时间】:2011-03-12 00:06:10
【问题描述】:
$('.dragbox').each(function(){
$('.close').click(function(){
$(this).parent().hide();
}),
$('.colpase').click(function(){
$(this).siblings('.dragbox_content').toggle();
})
});
【问题讨论】: