如何在输入文本时自动增加文本区域的宽度?
我正在尝试构建一个文本区域,其宽度在插入文本时会动态增加。
我发现许多脚本可以通过更改文本区域的高度来动态调整文本区域的大小,但没有任何脚本可以满足我的需求。
那么你知道有什么可以帮忙的吗?
I am trying to build a textarea whose width will dynamically increase while inserting text.
I have found many scripts that would dynamically resize a textarea by changing it's height but nothing that meets my needs.
So do you know anything that could help ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能会有所帮助..
祝你有美好的一天..
this may help..
have a good day..
为文本区域指定一个 ID。如果文本区域内的字体是等宽字体就很简单。如果不是有点复杂(创建一个字符宽度的分布函数,得到平均值,然后使用它)。
在 onkeyup 或 onkeypressed 事件上使用类似的东西
Give the textarea an ID. If the font inside the textarea is monospace is simple. If not is a bit complicated (create a distribution function of the width of a character, get an average use it forward).
On a onkeyup or onkeypressed event use something like