jQuery:向文本区域中的部分文本添加工具提示,并在用户开始编辑时删除它们
我计划构建一个工具,可以向用户提供有关其文本的建议,类似于拼写检查器。
我想:
- 突出显示有问题的文本
- ,当用户开始编辑它时删除突出显示。
我将如何在 jquery 中做到这一点?突出显示有问题的文本看起来很容易,甚至可以使用 qtip2 这样的库添加工具提示,但是当用户开始编辑文本时,如何删除该突出显示?
I am planning on building a tool that will provide suggestions to the user on his text, similar to a spellchecker.
I would like to:
- highlight problematic text
- remove the highlighting when the user starts editing it.
How would I do this in jquery? Highlighting problematic text looks easy, even adding tooltips with a lib like qtip2, but how would I remove that highlighting as soon as the user starts to edit the text?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想删除某些内容,请将处理程序分配给文本区域的
change
、focus
、mousedown
、keydown
事件If you just want to remove something assign a handler to textarea's
change
,focus
,mousedown
,keydown
events