Plus de 50 mots beaucoup beaucoup beaucoup beaucoup beaucoup beaucoup beaucoup beaucoup beaucoup beaucoup beaucoup beaucoup beaucoup beaucoup de mots
&l">Ce qui suit est mon code. Le bouton stipule que le suffixe doit être omis. Le problème maintenant est pourquoi après avoir cliqué sur voir plus, le clic de fermeture ajouté au suffixe est invalide
超過50字很多很多很多很多很多很多很多很多很多很多很多很多字
$(function () { var $len = 20; $(".font .description p").each(function () { var $textold = $(this).text(); var $text = $(this).text().substring(0, $len - 1) + ""; if ($(this).text().length > $len) { $(this).text($text).append(""); } $('.add').click(function () { $(this).closest(".font").find(".description p").text($textold).append(""); }); $('.close').click(function () { $(this).closest(".font").find(".description p").text($text).append(""); }); }); })