js获取文本的行数
Posted 农码精神
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取文本的行数相关的知识,希望对你有一定的参考价值。
<div class="txt" style="line-height:30px">我是文字<br>我是文字<br>我是文字<br>我是文字</div>
<script> //高度/行高=文本行数 var rowNum=Math.round($(".txt").height()/parseFloat($(".txt").css(‘line-height‘))); alert("当前有"+rowNum+"行"); </script>
以上是关于js获取文本的行数的主要内容,如果未能解决你的问题,请参考以下文章