代码超简单:
$(function(){
$(".box h2").css('cursor', 'pointer');
$(".box h2").click(
function(e){
$(this).next().toggle();
}
).click();
$(".post-title").css('cursor', 'pointer');
$(".post-title").click(
function(e){
$(this).next().next().toggle();
}
).click();
$('#readerpublishermodule0 h3').css('cursor', 'pointer');
$('#readerpublishermodule0 h3').click(
function(e){
$(this).next().toggle();
}
).click();
})