js如何获取div中文字的行数?

js如何获取div中文字的行数?

如图,应该分别获取到一行文字、两行文字,有没有办法获取到呢?
image.png

阅读 4.5k
2 个回答

没有直接办法,你只能根据元素高度和每行高度做除法,网上搜下就有答案了

`function countLines(ele) {
var styles = window.getComputedStyle(ele, null);
var lh = parseInt(styles.lineHeight, 10);
var h = parseInt(styles.height, 10);
var lc = Math.round(h / lh);
console.log('line count:', lc, 'line-height:', lh, 'height:', h);
return lc;
}`

countLines(document.querySelector('.desc[_v-36f926b2]'))

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏