<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<ul>
<li>テキストテキストテキスト</li>
<li>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</li>
<li>テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト</li>
</ul>
$(function() {
var count = 20; // 文字数を指定
$('ul li').each(function() {
var thisText = $(this).text();
var textLength = thisText.length;
if (textLength > count) {
var showText = thisText.substring(0, count);
var insertText = showText += '…'; // 末尾へ三点リーダーを追加する
$(this).html(insertText);
};
});
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.