/*
溢出隐藏
*/
overflow: hidden;
/*
显示省略号
*/
text-overflow: ellipsis;
/*
不换行
*/
white-space: nowrap;
overflow: hidden;
height: 30px;
$(function(){
// 文字隐藏
$(".user_star_dd").each(
function(i) {
var divH = $(this).height();
var $p = $("p", $(this));
while ($p.outerHeight() > divH) {
$p.text($p.text().replace(
/(\s)*([a-zA-Z0-9]+|\W)(\.\.\.)?$/, "..."));
};
});
})
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |