<script type="text/javascript"> $(document).ready(function () { wrapText(); }); function wrapText() { $(".text").each(function (i) { var divH = $(this).height(); var $p = $("p", $(this)).eq(0); while ($p.outerHeight() > divH) { $p.text($p.text().replace(/(\s)*([a-zA-Z0-9]+|\W)(\.\.\.)?$/, "...")); } }); } </script>
需要注意的是上面的js代码使用的文本里面设置的class名称.