单击即可获取单词
在 HTML 文档中,如何通过单击获取单词?
例如,如果我有这个:
<div id = "word">
hello world
</div>
我希望能够单击 word
div 中的任何单词并无需选择即可获取它。也许使用 JQuery 可以实现这一点吗?
In an HTML document, how do I get a word with a single click?
For instance if I have this:
<div id = "word">
hello world
</div>
I'd like to be able to click any word within the word
div and get it without selection. Would this be possible using JQuery, perhaps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想说点击文本块中的某个单词会提醒您该特定单词?如果是,那么这里是适合您的
js fiddle
:这是一个类似的 Stackoverflow 问题,可能会对您有很大帮助:
检测文本中哪个单词被点击
希望这有帮助。
You want to say clicking on a word in a block of text alerts you that specific word?? If yes then here is the
js fiddle
for you:and here is a similar
Stackoverflow
question which may help you alot:Detect which word has been clicked on within a text
Hope this helps.
也许这个可以帮助某人:
May be this one can help someone: