然后,当元素中的文本超过x个字符时,将应用新类
<p class="foo text-exceeds-X-chars">12345678910101010101</p>
$('p.foo').addClass(function() { return $.trim(this.textContent).length > 10 ? 'text-exceeds-X-chars' : null; });