检测文本区域中的返回键,如果存在某个字符串,则向文本区域写入一行 [javascript]
基本上有一个大的文本区域,我希望能够用它做一些事情;
检测用户何时按“enter”键转到新行,
和
当按 Enter 时,如果该行包含某个字符串(比如“hello”),则会写入一行到显示“hello to you”的文本区域。
我一生都无法检测文本区域中的字符串。不过,我是个大新手。
多谢。
Basically have a large textarea, and I want to be able to do a few things with it;
Detect when the user presses "enter" to go to a new line,
and
When enter is pressed, if the line contains a certain string let's say "hello", a line would be written to the textarea that reads "hello to you."
I cannot, for the life of me, detect a string from within a textarea. I am a huge newb, though.
Much obliged.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,我将使用 jQuery 这样的 JavaScript 框架。代码看起来像这样:
I would use a JavaScript framework like jQuery for this purpose. The code would look something like this: