// 代码块收缩 $(function () { var $code_expand = $(''); $('.code-area').prepend($code_expand); $('.code-expand').on('click', function () { if ($(this).parent().hasClass('code-closed')) { $(this).siblings('pre').find('code').show(); $(this).parent().removeClass('code-closed'); } else { $(this).siblings('pre').find('code').hide(); $(this).parent().addClass('code-closed'); } }); });