Jquery textFill插件在表中不起作用

时间:2013-04-04 07:11:29

标签: jquery text

我正在尝试使用Jquery textFill调整表格内的文本大小。 但我似乎无法使其发挥作用。我动态创建我的表

在第一张图片中,文字应调整到边缘....

插件:https://github.com/jquery-textfill/jquery-textfill 代码:

        var p = document.createElement("p");
        p.innerHTML = "123412412412414214142";

        var cell = document.createElement('td');
        cell.appendChild(p);
        row.appendChild(cell);
        table.appendChild(row);
        $(table).textfill({innerTag:"p", debug:"test", maxFontPixels: 0});

enter image description here

enter image description here

小提琴:http://jsfiddle.net/AF9ak/

0 个答案:

没有答案