$(document).ready(function() {
$("#first h3.title").bind("click", function() {
$(this).next().show();
})
});
<body>
<div id="first">
<h3 class="title">什么是编程词典?</h3>
<div id="content">
明日编程词典系列软件是由近百位软件开发专业人士联手打造; ...中间省略部分文字 编程词典个人版,珍藏版现已震撼热卖!
</div>
</div>
</body>
#content {
text-indent: 2em;
display: none;
}