开发者

Limit number of characters and put read more link

I am using in place 开发者_Go百科ckeditor with jquery drag and drop. I want to limit the number of characters to 20 and put the read more link. Can anyone tel me, how can i do this.


Not sure if this will work inside your editor but does limit the characters when displayed on html page on frontend:

<html>
<body>
<?PHP 
$chars = 20;
$desc = substr($ckeditorcontent,0,$chars); 
echo $desc ."...";?><a href="#" title="More info">More</a>
</body>
</html>
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜