HTML5文本区域字符限制属性
是否有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的, 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.
请参阅: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 whilesee other similar questions:
jquery - TextArea MaxLength - Supported or Not Supported? - Stack Overflow
How to impose maxlength on textArea in HTML , Javascript - Stack Overflow