window.getSelection 返回 html
function selected() {
var selObj = window.getSelection();
}
此函数返回从网页中选择的文本。如何返回所选区域的html。这可以通过 和
标签来实现吗?
以下是函数列表:
https://developer.mozilla.org/Special:Tags?tag=DOM& ;语言=en
function selected() {
var selObj = window.getSelection();
}
This function returns selected text from a webpage. How do return the html of a selected area. Is this possible to do with an <img>
and an <a>
tag?
Here's the list of functions:
https://developer.mozilla.org/Special:Tags?tag=DOM&language=en
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下内容将在所有主要浏览器中执行此操作,并且与此答案完全相同:
The following will do this in all major browsers and is an exact duplicate of this answer: