jQuery截取字數用點點點顯示

來源:互聯網
上載者:User

標籤:his   substring   self   doc   計算   滑鼠   string   使用   截斷   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>jQuery根據設定的字數截斷過長標題並在末尾加上“…”</title>
<script type="text/javascript" src="../../jquery/jquery.js"></script>

</head>

<body>
<div limit="5">計算字串的長度長度長度長度</div>
<div limit="5">計算字長度長度</div>
<li limit="5">這邊有最佳化很公開這邊</li>
<li limit="5">這邊有最佳化很公開這邊這邊有最佳化很公開這邊</li>
<dt limit="5">這邊有最佳化很公開長度長度很公開長度</dt>
<dd limit="5">這邊有最佳化很邊有最佳化很邊有最佳化很邊有最佳化很邊有最佳化很</dd>

<script type="text/javascript">
function limit(){
//這裡的div去掉的話,就可以運用li和其他元素上了,否則就只能div使用。
var self = $("[limit]");
self.each(function(){
var objString = $(this).text();
var objLength = $(this).text().length;
var num = $(this).attr("limit");
if(objLength > num){
//這裡可以設定滑鼠移動上去後顯示標題全文的title屬性,可去掉。
$(this).attr("title",objString);
objString = $(this).text(objString.substring(0,num) + "...");
}
})
}
limit();
</script>
</body>
</html>

jQuery截取字數用點點點顯示

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.