$(function(){
$(".plot").each(function(){
var maxwidth=30;//设置最多显示的字数
var text=$(this).text();
if($(this).text().length>maxwidth){
$(this).text($(this).text().substring(0,maxwidth));
$(this).html($(this).html()+"..."+"<a href='#'> 展开全部</a>");
};
$(this).find("a").click(function(){
$(this).parent().text(text);
})
})
});原文链接:https://www.qiquanji.com/post/5257.html
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
微信扫码关注
更新实时通知