高度/行高=文本行数
<script>
// 高度/行高=文本行数
var
rowNum=Math.round($(
".txt"
).height()/parseFloat($(
).css(
'line-height'
)));
alert(
"当前有"
+rowNum+
"行"
);
</script>