有一些文字由165個字符組成。我只需要顯示前155個字符,但155個字符中的最後5個應該替換爲「.....」(elipses),其餘字符應該刪除。 fiddle使用jquery設置文本限制
<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>
來吧@TecHunter,他有他嘗試的東西的小提琴。你必須從某個地方開始學習。對於包含小提琴的問題,-1表示他正在嘗試學習,應該讓你自己得到-1。你知道第1天的字符串函數嗎? – JClaspill
@JClaspill好吧沒關係...你對問題格式 – TecHunter