> 웹 프론트엔드 > JS 튜토리얼 > JQuery는 콘텐츠 길이가 지정된 길이를 초과할 때 타원 표시를 제어합니다.

JQuery는 콘텐츠 길이가 지정된 길이를 초과할 때 타원 표시를 제어합니다.

WBOY
풀어 주다: 2016-05-16 16:47:06
원래의
1420명이 탐색했습니다.

길이가 지정된 길이를 초과하면 타원이 표시됩니다.

클래스를 displayPart로 설정,

사용자 정의 속성 설정, displayLength는 길이(... 제외), 2바이트 문자를 표시할 수 있습니다. , 길이 * 2,

코드 복사 코드는 다음과 같습니다.

<스크립트 유형 ="text/javascript">
$.fn.extend({
displayPart:function () {
var displayLength = 100;
displayLength = this.attr("displayLength") || displayLength;
var text = this.text();
if (!text) return "";

var result = ""
for (var i = 0; i < ; displayLength; i ) {
var _char = text.charAt(i)
if (count >= displayLength)
if (/[^x00- xff]/.test(_char) ) count ; //2바이트 문자, //[u4e00-u9fa5] 중국어

result = _char;
}
if ( result.length < text.length ) {
result = "..."
}
this.text(result)
}
}); >$(function () {
$(".displayPart").displayPart();
})







코드 복사
새 문서
< 메타 이름="생성기" content="EditPlus">
"키워드" content="">





hello world




hello worldhello worldhello worldhello worldhello worldhello worldhello worldhello world!!! ;hr>

hello< /h2>
hello worldhello worldhello worldhello worldhello worldhello worldhello worldhello worldhello world


관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿