có cách nào để đếm số dòng trong một div và lấy nội dung của vài dòng đầu tiên không- Javascript [trùng lặp]

Jan 08 2021

Mục tiêu của tôi là lấy độ dài của textContent của 3 dòng đầu tiên trong một div. Ví dụ:

<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> 

Tôi có thể đếm số dòng có trong div bằng cách sử dụng:

 function countLines() {
   var el = document.getElementById('content');
   var divHeight = el.offsetHeight
   var lineHeight = parseInt(el.style.lineHeight);
   var lines = divHeight / lineHeight;
   alert("Lines: " + lines);
}

Tuy nhiên, tôi muốn biết rằng có một cách để tìm độ dài văn bản của 3 dòng đầu tiên, trong trường hợp trên:

 <p>hello how are you?</p> 
            <p>hello how are you too?</p> 
            <p>hello how are you john? </p> 

hãy nói rằng tôi làm:

var lines = countLines(); // 4
if (lines > 3) {
  test = document.getElementById("content").textContent.length;
// get the length of first 3 lines
}

điều này có thể xảy ra trong javascript không?

Trả lời

2 WiatroBosy Jan 08 2021 at 15:42

Nếu bạn muốn trong 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>

Kết thúc 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>