Find the number of lines in a div

后端 未结 3 951
醉酒成梦
醉酒成梦 2021-01-07 23:14

I want to show \'View All\' kind of link, only when the lines in the div has reached 4 lines.

HTML

3PAS-Pub-IO-doubl
3条回答
  •  旧巷少年郎
    2021-01-08 00:14

    you should not use $("#startegy-sections-targeting-exclude").css('line-height'); if you haven't specified a line-height. in javascript you can use this :

    var element = document.getElementById('startegy-sections-targeting-exclude');
    var lineheight = document.defaultView.getComputedStyle(element, null).getPropertyValue("lineHeight");
    

提交回复
热议问题