Use JS code to replace the extra parts with ellipsis - PHP Chinese website Q&A - Use JS code to replace the extra parts with ellipsis - PHP Chinese website Q&A
@param ele 需要被限制的元素 */ function limitLength(len, ele){ //循环设置文本 $.each(ele,function(i,v){ //将原来的文本长度截取到指定长度 var text = $(v).text().substring(0,len); //重新赋值 $(v).text(text); }) }
Use JS code to replace the extra parts with ellipsis - PHP Chinese website Q&A - Use JS code to replace the extra parts with ellipsis - PHP Chinese website Q&A
Take a look around and learn.
/**
限制文本显示长度
@param len 最多显示的长度
@param ele 需要被限制的元素 */ function limitLength(len, ele){ //循环设置文本 $.each(ele,function(i,v){ //将原来的文本长度截取到指定长度 var text = $(v).text().substring(0,len); //重新赋值 $(v).text(text); }) }