0

我整天在谷歌上搜索这个,基本上我有一个可以包含 50 到 500 个字符的字段,所以我正在寻找一个脚本,它允许我一次显示 200 个(例如)阅读更多链接以扩展其余内容,到目前为止,我发现的最接近的是this(请参见下面的代码),但这需要手动分离内容,这实际上是不可能的..

 <p>...This is all visible content... 
<a href="#" id="example-show" class="showLink" 
onclick="showHide('example');return false;">See more.</a>
</p>
 <div id="example" class="more">
    <p>...This content is hidden by default...</p>
<p><a href="#" id="example-hide" class="hideLink" 
onclick="showHide('example');return false;">Hide this content.</a></p>

我需要类似的东西..

<div class="hidden"><?php $rows['content']; ?></div>

即使有一种非脚本 PHP 方式来做到这一点,我也会很高兴。

4

1 回答 1

1

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 的时间(毫秒)

于 2013-07-19T03:10:38.257 回答