JavaScript 如何计算文本的行数的实现
需求:根据行数决定是否限制展开和收起。
思路:用2个块统计行高,一个不加高度限制用来统计行数(css隐藏),一个加高度限制用来显示(加高度限制会导致统计行数不准)
要想知道文本的行数,那就需要知道文本的总高度和每一行的高度,总高度除以行高就是行数。当然总高度的计算必须是文字所在的 DOM 没有对高度的限制,随着文本的增加 DOM 要随之变高才行;最后还要考虑 DOM 的样式padding和margin对高度的影响。这样一来我们就可以计算出文本的行数了。总结一下我们需要如下几步:
- 克隆文本所在的 DOM;
- 清除 DOM 的高度限制;
- 获取 DOM 的行高和高度;
- 计算行数;
- 去除克隆的 DOM。
相关代码
document.getElementById("noticeContent").innerText = str;//展示的块 document.getElementById("noticeContent2").innerText = str;//计算行高的块 this.$nextTick(() => { let noticeDom = document.getElementById("noticeContent2"); console.log(noticeDom); let style = window.getComputedStyle(noticeDom, null); let row = Math.ceil( Number(style.height.replace("px", "")) / Number(style.lineHeight.replace("px", "")) );//总行高 / 每行行高 console.log("noticeDom===>", style.height, style.lineHeight); console.log("rowwwww", row); if (row > 2) {//超过2行则显示展开和收起 this.showOmit = true; this.showOpen = true; } else { this.showOpen = false; } });
相关推荐
星星有所不知 2020-10-12
zuncle 2020-09-28
北京老苏 2020-08-17
luvhl 2020-08-17
Kakoola 2020-07-29
drdrsky 2020-07-29
书虫媛 2020-07-08
liaoxuewu 2020-07-08
SIMONDOMAIN 2020-07-08
爱读书的旅行者 2020-07-07
tianzyc 2020-07-04
Vue和React是数据驱动视图,如何有效控制DOM操作?能不能把计算,更多的转移为js计算?因为js执行速度很快。patch函数-->patch,对比tag,对比tag与key,对比children
Lophole 2020-07-04
Lophole 2020-06-28
liaoxuewu 2020-06-26
ApeLife技术 2020-06-26
北京老苏 2020-06-25
Lophole 2020-06-14
SIMONDOMAIN 2020-06-14