detect css text-overlow ellipsis with jquery

前端 未结 2 1903
日久生厌
日久生厌 2021-01-12 21:24

Here is a fiddle

CSS:

div{
    width:160px;
    text-overflow:ellipsis;
    overflow:hidden;
    white-space:nowrap;
    text-transform: uppercase;
}         


        
2条回答
  •  不思量自难忘°
    2021-01-12 22:03

    I forgot to post my solution.

    Now i'm using el.scrollWidth > el.clientWidth; and it's working well.
    Note that el in this case is not jquery wrapped.

提交回复
热议问题