如何使用fontsize函数限制html中textarea中的文本

发布于 2024-12-18 08:31:28 字数 130 浏览 2 评论 0原文

我有一个文本区域,用户只能在其中输入有限数量的字符。我有一个与其相关的字体大小选择器和字体系列选择器。该文本区域位于图像上,我必须将文本限制在有限的空间内。我可以通过什么方式限制文本区域的参数(大小和系列)?我希望我用了正确的词语来解释我的问题!

i have a textarea in which users can put only a limited number of character. I have a font-size selector and a font-family selector associated whit it. This textarea is on a image and i have to limit text in a limited space. in which way i can limit textarea in function of that parameters ( size and family) ? i hope i used the right words to explain my problem!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愛上了 2024-12-25 08:31:28

使用 maxlength 限制文本区域的长度。以下 HTML 仅支持 5 个字符:

<textarea id="txtarea" maxlength="5"></textarea>

Use maxlength for limit the length of textarea. The following HTML support only 5 character:

<textarea id="txtarea" maxlength="5"></textarea>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文