1
嗨我想修剪一個段落。我想要的是有兩行文字,當你點擊它擴展的trimed內容,並顯示其餘的內容。修剪一段
這是我的代碼
$str.=' <div class="page-heading">
<span class="titlechange">'.$this->title.'</span>
<div class="clearboth"></div>
</div>';
$str.='
<div class="content-box-wrapper newsfeed">
<div class="content-box-container">';
foreach($this->boxes as $box){
if($htag > 6){
$htag=6;
}
$str.='<div class="news-heading expand-next-content">';
$str.='<div class="testimonial_content">';
if($box->image) $str.= '<img class="floatleft" src="'.$_HTTP_ADDRESS."content_images/".$box->image.'" />';
if($box->title){
$str.= '<h'.$htag.'>'.$box->title.'</h'.$htag.'>';
}
if($box->content){
if (stristr($box->content,'<p>')){
$str.= $box->content;
}else{
$str.= '<p>'.$box->content.'</p>';
}
}
$str.= '<div class="clearboth"></div>';
$str.='</div>';
$htag++;
$str.='</div>';
}
$str.='</div>';
$str.='</div>';
$str.=' <div class="clearboth"></div>
</div>
你好,如果你想內嵌的readmore功能然後使用jQuery來切換更多文字顯示的div –
很酷我會這麼做,但是修剪這個段落呢? – user3095193
保持您的div高度固定,onclick將其高度更改爲自動 –