1. 程式人生 > >玄宇說:JQ實現限制字數替換“…”

玄宇說:JQ實現限制字數替換“…”

多說無用上圖為準

$(document).ready(function(){
        //限制字元個數
        $(".zishu").each(function () {
            //限制字元為50個
            var maxwidth=50;
            //當前文字大於字數
            if($(this).text().length>maxwidth){
                //提取限制前的字元
                $(this).text($(this).text().substring(0,maxwidth));
                //增加“…”
$(this).html($(this).html()+'...'); } }); });