¿Hay alguna manera de contar el número de líneas en un div y obtener el contenido de texto de las primeras dos líneas?
Mi objetivo es obtener la longitud del textoContenido de las primeras 3 líneas en un div. Ex:
<div id="content" style="width: 100%;
line-height: 20px">
<p>hello how are you?</p>
<p>hello how are you too?</p>
<p>hello how are you john? </p>
<p>hello how are you sphia?</p>
</div>
Puedo contar el número de líneas contenidas en el div usando:
function countLines() {
var el = document.getElementById('content');
var divHeight = el.offsetHeight
var lineHeight = parseInt(el.style.lineHeight);
var lines = divHeight / lineHeight;
alert("Lines: " + lines);
}
sin embargo, quiero saber si hay una manera de encontrar la longitud del texto de las primeras 3 líneas, en el caso anterior:
<p>hello how are you?</p>
<p>hello how are you too?</p>
<p>hello how are you john? </p>
digamos que sí:
var lines = countLines(); // 4
if (lines > 3) {
test = document.getElementById("content").textContent.length;
// get the length of first 3 lines
}
¿Es esto posible en javascript?
Respuestas
2 WiatroBosy
Si quieres en jQuery
let p = $('#content').find('p'); for (i = 0; i < 3; i++) { console.log($(p[i]).text().length);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div id="content" style="width: 100%;
line-height: 20px">
<p>hello how are you?</p>
<p>hello how are you too?</p>
<p>hello how are you john? </p>
<p>hello how are you sphia?</p>
</div>
End js
let p=document.getElementById("content");
let v=p.getElementsByTagName("p");
for (i = 0; i < 3; i++) {
console.log(v[i].innerHTML.length);
}
<div id="content" style="width: 100%;
line-height: 20px">
<p>hello how are you?</p>
<p>hello how are you too?</p>
<p>hello how are you john? </p>
<p>hello how are you sphia?</p>
</div>