English 中文(简体)
能否用 javaScript 来突出文字和检查 html?
原标题:Is it possible to highlight text and examine the html with javaScript?
  • 时间:2012-05-24 13:18:53
  •  标签:
  • javascript

能否在网页上突出显示文本,然后用 javaScript 来检查 html? (用 javaScript 标本将 HTML 注入另一个 DIV )?

我为铬构建一个扩展名,我希望用户能够突出显示文本,我希望扩展名能够做两件事:复制文本(在文本区域/输入中,或者在横跨/div/ anyny-ement中,或者在横跨/div/ any-ement中检查选定文本的 HTML。

This is all under the assumption that chrome has the ability to edit & examine the DOM. I believe this to be the case because of this warning I received in GC s extensions manager enter image description here This tells me that the extensions have some access. To at least the page address. Is there more access?

最佳回答

注:以下将不适用于 IE & lt; 9. 交叉浏览解决方案, 见 < a href="https://stackoverflow.com/ questions/4176923/html-of-select- text" >选定文本的HTML。

function getSelectionText() {
    var text = "";
    if (typeof window.getSelection != "undefined") {
        text = window.getSelection().toString();
    }
    return text;
}

function getSelectionHtml() {
    var html = "";
    if (typeof window.getSelection != "undefined") {
        var sel = window.getSelection();
        if (sel.rangeCount) {
            var container = document.createElement("div");
            container.appendChild(sel.getRangeAt(0).cloneContents());
            html = container.innerHTML;
        }
    }
    return html;
}
问题回答

首先, 不要介意 Chrome 给 Incognito 模式的警告。 它只是用来警告人们, 当 Incognito 模式用户在 Incognito 模式中启用扩展功能时, 男人不能百分之百地安全到无法记录他的浏览行为( 一些邪恶扩展可能收集银行访问数据 ) 。

如果您想要在一些文本区域/ 输入字段中捕捉到用户选中的文本, 您需要从阅读和实施 < a href=" http://code.google.com/chrome/extensions/ content_ scrips. html" rel=“ nofollow” > concontent 脚本 开始。 这样一个脚本将随后由 Chrome 输入您选择的网站。 从那里它可以操作 DOM 并倾听事件( 就像嵌入网站的常规脚本一样 ) 。

欲了解获取选中文本的详情,请查看 Tims 回答您的问题,或只是搜索堆叠流 - 这个问题以前曾被多次问过 。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.

热门标签