html:
<td class="superiorName" th:text="${dealerList.superiorName}"></td>
js:
<script type="text/javascript">
// 限制字数为10个,多余的为空格
$(function(){
$(".superiorName").each(function () {
var maxwidth = 10;
if ($(this).text().length >= maxwidth) {
var b = $(this).children().is("a");
if (b) {
$(this).children().text($(this).children().text().substring(0, maxwidth) + "...");
} else {
$(this).text($(this).text().substring(0, maxwidth));
$(this).text($(this).text() + "...");
}
}
})
})
</script>