使用 jQuery 选择输入字段中括号之间的文本
使用 $("#TextInputElement").select()
我可以在输入文本字段中选择文本(标记它)。
现在我只想选择该输入字段中括号之间的文本。 我有正则表达式 match(/-[^-]*-/)
可供选择,但如何应用它来仅选择括号之间的输入字段内的文本?
[noselect]要选择的文本[/noselect]
With $("#TextInputElement").select()
I am able to select a text (mark it) in an in an input text field.
Now I only want to select the text in between brackets in that input field.
I have the regular expression match(/-[^-]*-/)
to select, but how would I apply this to only select the text inside the input field between brackets?
[noselect]textToBeSelected[/noselect]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个代码:
Try this code:
您需要使用 createTextRange/setSelectionRange
示例 展示如何以跨浏览器方式使用它们
You need to use createTextRange/setSelectionRange
Example showing how to use them in a cross browser manner