我正在尝试使用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});