限制文本区域
可能的重复:
限制文本区域中输入的字符数
如何设置限制文本区域可以输入的字符数?我有一个文本区域,您最多可以在其中输入 50 个字符。我怎样才能用Javascript做到这一点。我希望输入也是字符,这样人们就不会输入大量输入
。
Possible Duplicate:
limit number of characters entered in textarea
How can I set a limit on the number of characters possible to go into a textarea? I have a textarea that you can put max 50 characters into it. How can i make this with Javascript. I want that the enters are also characters so people wont put lots of enters
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
上面带有 onkeypress 的代码不适用于复制/粘贴或拖动&降低
您可以使用“oninput”事件,但并非所有浏览器都支持它(ie8+)
限制/过滤表单字段的最佳方法是这样的:
但无论如何,您都需要服务器端检查
HTH!
the above code with onkeypress will not work with copy/paste or drag & drop
you can use the "oninput" event but it is not supported in all mayor browsers (ie8+)
the best way to limit/filter a form field is this:
but in any case you will need a server-side check
HTH!
试试这个:
或者
try this:
or