HTML5文本区域字符限制属性

发布于 2024-10-31 18:43:33 字数 80 浏览 1 评论 0原文

是否有 HTML5 属性可以设置文本区域或其他表单中的最大字符数?
我想要一个是/否的答案,而不是使用 javascript 的其他方法。

Is there an HTML5 attribute to set the maximum amount of characters in a textarea or other form?
I want a yes/no answer not some other method using javascript.

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

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

发布评论

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

评论(2

往日情怀 2024-11-07 18:43:33

是的, maxlength 仍然有效: http://jsfiddle.net/xhqsB/1/ (演示有文本区域和文本的输入类型)

请注意,客户端很容易绕过这些限制,因此,如果您将数据提交到表单,请让服务器端脚本检查提交数据的长度。

Yup, maxlength works still: http://jsfiddle.net/xhqsB/1/ (demo has textarea and input type of text)

Beware that it is fairly easy for the client to bypass these restrictions, so if you are submitting data to a form, have the server-side script check the length of the submitted data.

Smile简单爱 2024-11-07 18:43:33

请参阅:textarea – 文本输入区域 - HTML5

maxlength 属性对于

请参阅其他类似问题:

jquery - TextArea MaxLength - 支持还是不支持? - Stack Overflow

如何在 textArea 上施加 maxlength HTML,Javascript - 堆栈内存溢出

see: textarea – text input area - HTML5

the maxlength attribute is new to HTML5 for <textarea> but has been available for <input type="text" /> for a while

see other similar questions:

jquery - TextArea MaxLength - Supported or Not Supported? - Stack Overflow

How to impose maxlength on textArea in HTML , Javascript - Stack Overflow

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