jQuery 追加 &将一些文本添加到文本区域上选定的单词之前
我有一个文本区域和该文本区域上方的一个按钮。我想在此文本区域中选择一个单词,并在所选单词前面加上一些符号。
例如:
你好-> (你好) // 当单击文本区域上方或下方的一个按钮时,我想在前面添加“(”并添加“)”。但我不知道如何用选定的单词来做到这一点?
I have a textarea and one button above this textarea. I want to select a word(s) in this textarea and prepend + append some signs to selected word(s).
For example:
hello -> (hello) // i want to prepend "(" and append ")" when click one button above or below textarea. But i don't know how to do it with selected words?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我强烈建议您使用: jQuery - fieldSelection
它具有以下功能:
getSelection()
和replaceSelection(text)
所以你可以这样做:
I highly recommend that you use: jQuery - fieldSelection
It has the functions:
getSelection()
andreplaceSelection(text)
So you could do this: