<article>
<h1>記事タイトル</h1>
<p class="hidden">本文</p>
<button>続きを読む</button>
</article>


p.hidden{display:none}

$("button").click(function(){
$(this).siblings("p").show();
$(this).hide();
};

これでいけるはず