jQuery textarea - 插入模式光标位置
在文本区域中,如何使用 jQuery 在光标位置旁边插入模式 name
,然后光标应位于模式后面:这应该在单击按钮时发生
<input type="button" value="insert pattern" >
<textarea rows="10" id="comments">INSERT The condition</textarea>
In a text area how to insert the pattern name
next to the cursor position using jQuery and after which the cursor should be after the pattern:This should happen on the button click
<input type="button" value="insert pattern" >
<textarea rows="10" id="comments">INSERT The condition</textarea>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅此答案。这就是我得到 insertAtCaret() 方法的地方。我继续将其连接到您的按钮...不确定您所说的“模式
名称
”到底是什么意思。这是 SQL 的事情吗?它是否基于 HTML 中的某些先前输入字段?如果没有更多细节,很难提供比这更多的帮助。然后,在您的 HTML 中:
希望这有帮助!
Please see this answer. That's where I got the insertAtCaret() method. I went ahead and hooked it up to your button...not sure exactly what you mean by "the pattern
name
." Is that a SQL thing? Is it based on some previous input field in HTML? Hard to help any further than this without more detail.Then, in your HTML:
Hope this helps!