我想对角自动调整textarea以适应内容。
我看到了一个jsfiddle演示但是textarea只是按高度调整大小。是否可以对角自动调整大小?
答案 0 :(得分:0)
试试这种方式
txt.on('keyup', function () {
content = $(this).val();
content = content.replace(/\n/g, '<br>');
hiddenDiv.html(content + '<br class="lbr">');
$(this).css('height', hiddenDiv.height()+50);
$(this).css('width', $(this).width()+50);
});