码迷,mamicode.com
首页 > 其他好文 > 详细

超出文字省略号显示

时间:2015-07-27 14:36:04      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

css方法:

overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;

js方法:

function Ellipsis() {
    $(".overflowHidden").each(function(){
        maxwidth=$(this).attr("data-max");
    if($(this).text().length>maxwidth){
        $(this).text($(this).text().substring(0,maxwidth));
        $(this).html($(this).html()+‘...‘);
    }else{
        $(this).text($(this).text());
    }
    });
}
html页面中使用的时候:
<div class="overflowHidden" data-max="10" >
</div>
<script>
  
Ellipsis();
//调用函数;
</script>

 

超出文字省略号显示

标签:

原文地址:http://www.cnblogs.com/wenrain/p/4679889.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!