JQ 文本超出

时间:2023-03-09 15:38:27
JQ 文本超出

原链接:https://blog.****.net/sinat_32546159/article/details/56340528

<script type="text/javascript">
$(function () {
$("p").each(function () {
var maxwidth = 13;
if ($(this).text().length > maxwidth) {
$(this).text($(this).text().substring(0, maxwidth));
$(this).html($(this).html() + '...[<a href="#">详细</a>]');
}
});
})
</script>