Textarea 限制每行字符数 Jquery 或 Javascript
可能的重复:
如何将文本区域中每行的字符数限制为固定值。
你好朋友,
我的视图中有一个文本区域字段。
我需要设置每行 72 个字符的长度。
也就是说,用户每行输入超过 72 个字符,我需要转到下一行。
如何使用 jquery 或 javascript 设置这些限制?
谢谢
Possible Duplicate:
How to limit number of characters per line in text area to a fixed value.
hello Friends,
I have a textarea field in my view.
I need to set per line 72 characters length.
that is user is entering more than 72 chracter per line I need go to next line.
How to set these limits using jquery or javascript?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这不是标准的,但它适用于许多浏览器,测试一下。
http://www.htmlcodetutorial.com/forms/_TEXTAREA_WRAP.html
将换行设置为硬使其向服务器发送新行。将其设置为柔和只会在视觉上破坏它。
This is not standard, but it works in many browsers, test it.
http://www.htmlcodetutorial.com/forms/_TEXTAREA_WRAP.html
Setting wrap to hard makes it send new lines to the server. Setting it to soft only breaks it visually.
无需为此使用 JavaScript。
请参阅此处的一些文档。
供您使用的示例
使用
HARD Wrap 实际上是在换行时设置回车符。
No need to use javascript for this. There is a HTML attribute built into the
<textarea>
tag.See some documentation here.
example for your use
Using a
HARD
Wrap actually sets carriage returns when the line is wrapped.我发布这个答案可能有点晚了,但是最好使用 javaScript 来完成,以确保浏览器兼容性。使用 jQuery,我们可以
在 http://jsfiddle.net/ZWVad/2/ 处检查工作示例
I may be a bit late posting this answer, but this is best done with javaScript to ensure browser compatibility. With jQuery we can do
Check working example at http://jsfiddle.net/ZWVad/2/