html
<div class="box">
<p id="id_full_text" class="class_full_text">
Full Text
<p>
<a href="id_link_show_more" class="class_link_show_more">Show more</a>
<p id="id_hide_text" class="class_hide_text">
Hide Text
<p>
<a href="id_link_hide" class="class_link_hide">Hide more</a>
</div>
css
.class_hide_text, .class_link_hide {display: none;}
Jquery(在同一页面中只有 1 个)
$('#id_link_show_more').click(function () {
$('#id_full_text').hide(); // hide fullText p
$('#id_link_show_more').hide(); //hide show button
$('#id_hide_text').show('100'); // Show HideText p
$('#id_link_hide').show('100'); // show link hide
});
$('#id_link_hide').click(function () {
$('#id_link_hide').hide(); // hide link hide
$('#id_hide_text').hide(); // hide the hide Text
$('#id_link_show_more').show('100'); //show ths show button
$('#id_full_text').show('100'); // show fullText
});
jquery(如果你在同一个页面中有超过1个,因为你不想打开页面中所有的隐藏div)
$('.class_link_show_more').click(function () {
var the_parent = $(this).parent();
the_parent.children('.class_full_text').hide(); // hide fullText p
the_parent.children('.class_link_show_more').hide(); //hide button
the_parent.children('.class_link_hide').show('100'); // Show HideText p
the_parent.children('.class_hide_text').show('100'); // Show HideText p
});
$('.class_link_hide').click(function () {
var the_parent = $(this).parent();
the_parent.children('.class_link_hide').hide(); // hide link hide
the_parent.children('.class_hide_text').hide(); // hide hide text p
the_parent.children('.class_link_show_more').show('100'); //Show link show
the_parent.children('.class_full_text').show('100;); // show full text
});
注意:show(x) 中的数字是显示 div 的时间(毫秒)