有一些文本由 165 个字符组成。我只需要显示前 155 个字符,但 155 个字符中的最后 5 个应替换为“.....”(省略号),其余字符应删除。小提琴
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="jquery-1.8.3.js"></script>
<script type="text/javascript">
$(function(){
var txt= $('div').text();
for(i=0;i<2;i++){
alert(txt.charAt(150+ i))
}
})
</script>
</head>
<body>
<div style="width:100px">
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that
</div>
</body>