国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

JQuery 控制內(nèi)容長度超出規(guī)定長度顯示省略號

2024-05-06 16:06:33
字體:
供稿:網(wǎng)友
這篇文章主要介紹JQuery如何實(shí)現(xiàn)控制內(nèi)容長度超出規(guī)定長度顯示省略號,需要的朋友可以參考下

長度超出規(guī)定長度,顯示省略號

設(shè)置class為displayPart,

設(shè)置自定義屬,displayLength可顯示長度(不包含...),雙字節(jié)字符,長度 *2,

復(fù)制代碼 代碼如下:


<script type="text/javascript">
$.fn.extend({
displayPart:function () {
var displayLength = 100;
displayLength = this.attr("displayLength") || displayLength;
var text = this.text();
if (!text) return "";

var result = "";
var count = 0;
for (var i = 0; i < displayLength; i++) {
var _char = text.charAt(i);
if (count >= displayLength) break;
if (/[^x00-xff]/.test(_char)) count++; //雙字節(jié)字符,//[u4e00-u9fa5]中文

result += _char;
count++;
}
if (result.length < text.length) {
result += "...";
}
this.text(result);
}
});

$(function () {
$(".displayPart").displayPart();
});

</script>


復(fù)制代碼 代碼如下:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title> New Document </title>
<meta content="EditPlus">
<meta content="">
<meta content="">
<meta content="">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
</head>

<body>
<h2>hello world</h2>

<div>
hello worldhello worldhello worldhello worldhello worldhello worldhello worldhello worldhello worldhello worldhello worldhello world!!!
</div>
<hr>
<h2>hello</h2>
<div displayLength="40"> hello worldhello worldhello worldhello worldhello worldhello worldhello worldhello worldhelloworldhello worldhello worldhello worldhello worldhello worldhello world
</div>
</body>
</html>

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 清水河县| 乐都县| 息烽县| 阳春市| 花莲县| 洞头县| 辉县市| 洮南市| 龙州县| 女性| 婺源县| 漳浦县| 汉寿县| 海南省| 伊川县| 延津县| 朝阳县| 石阡县| 兴山县| 乌兰察布市| 百色市| 若羌县| 神农架林区| 闵行区| 兴业县| 肇庆市| 海晏县| 麻江县| 东光县| 辽阳市| 卢湾区| 阳信县| 沁阳市| 阿克| 蒙自县| 咸宁市| 金塔县| 榆树市| 准格尔旗| 鄢陵县| 商丘市|