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>