我有一个div
固定的宽度,里面span
有一些文字。样式
#web_view_container
{
position:absolute;
top:100px;
left:100px;
width:306px;
height:202px;
overflow:auto;
}
.sentences
{
font-family:Georgia, "Times New Roman", Times, serif;
font-size:20px;
line-height:120%;
}
的HTML
<div id="web_view_container">
<span class="sentences">Hello, This is last sentence This is last sentence This is last sentence This is last sentence This is last sentence.</span>
</div>
现在,我将如何获得<span>
已经遇到的行数。
请注意,我没有使用换行符,所以
var lines = $('#web_view_container').html().split("\n");
alert(lines.length);
不会工作。
这是同样的小提琴。
有人可以帮我解决这个问题。谢谢 :-)