我怎样才能让这段代码在 IE 中运行?

发布于 2024-08-06 23:22:31 字数 565 浏览 6 评论 0原文

我的 HTML 页面中有很多表格。 当用户将鼠标悬停在表格上时,应自动选择该表格(onmouseover 事件),以便用户可以将其复制(Ctrl+v)到剪贴板。 我在stackoverflow中搜索了一种方法,最终得到了以下代码。 但它仅适用于 Firefox(window.getSelection() 不适用于 IE)。 我怎样才能让它在 IE 中工作?

  var prevRange = null;

  function s(node) {
    var s = window.getSelection();
    var r = document.createRange();
    r.selectNode(node);
    if (prevRange) {
      s.removeRange(prevRange);
    }
    s.addRange(r)
    prevRange = r;
  }

由于某种未知的原因,我无法在 FF 中使用 s.removeAllRanges() 。 它给出“无效标签”错误。嗯。

另外,有没有办法以编程方式将所选代码复制到剪贴板?

谢谢。

山姆

There are many tables in my HTML page.
When a user hovers on a table, it should be automatically selected(onmouseover event) so that the user can copy(Ctrl+v) it to clipboard.
I searched for a way in stackoverflow and ended up with the following code.
But it only works in Firefox (window.getSelection() doesn't work in IE).
How can I make it work in IE?

  var prevRange = null;

  function s(node) {
    var s = window.getSelection();
    var r = document.createRange();
    r.selectNode(node);
    if (prevRange) {
      s.removeRange(prevRange);
    }
    s.addRange(r)
    prevRange = r;
  }

For some unknown reason, I can't use s.removeAllRanges() in FF.
It gives "invalid label" error. hmmm.

Also, is there a way to programmatically copy the selected code to clipboard?

Thanks.

Sam

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

看海 2024-08-13 23:22:31

以下功能将执行您想要的操作。不需要 jQuery。

我在 Firefox 中发现 removeAllRanges 没有任何问题。您需要提供更多代码来说明问题。

正如另一个答案中所述,您将无法将用户选择直接复制到剪贴板。大多数浏览器都不允许这样做。

function selectElement(el) {
    var sel, range;

    // IE branch
    if (document.body.createTextRange) {
        range = document.body.createTextRange();
        range.moveToElementText(el);
        range.select();
    } 

    // DOM compliant browsers
    else if (window.getSelection && document.createRange) {
        sel = window.getSelection();
        range = document.createRange();
        range.selectNodeContents(el);
        sel.removeAllRanges();
        sel.addRange(range);
    }
}

The following function will do what you want. No need for jQuery.

I've seen no problem with removeAllRanges in Firefox. You need to provide more code to illustrate the problem.

You won't be able to copy the user selection directly to the clipboard, as noted in another answer. Most browsers rightly don't allow it.

function selectElement(el) {
    var sel, range;

    // IE branch
    if (document.body.createTextRange) {
        range = document.body.createTextRange();
        range.moveToElementText(el);
        range.select();
    } 

    // DOM compliant browsers
    else if (window.getSelection && document.createRange) {
        sel = window.getSelection();
        range = document.createRange();
        range.selectNodeContents(el);
        sel.removeAllRanges();
        sel.addRange(range);
    }
}
并安 2024-08-13 23:22:31

使用像 jQuery 这样的库来帮助处理浏览器的怪癖可能是值得的。如果您了解基本的 javascript,那么使用它就足够简单了。

http://jquery.com/

It might be worth your while using a library like jQuery to help deal with browser quirks. It's simple enough to use if you know basic javascript.

http://jquery.com/

挽容 2024-08-13 23:22:31

This is a nice article explaining range differences between most common browsers and gives you useful tips to overcome them.

深海少女心 2024-08-13 23:22:31

关于 getSelection 这已经由 J. Steen 回答,

var s;
if (window.getSelection) {
    s = window.getSelection();
}
else if (document.selection) {
    s = document.selection.createRange();
}

关于以编程方式将所选文本复制到剪贴板,由于安全原因,这在 Firefox 中不起作用。有一些解决方法,但最终用户需要更改一些设置。 Java 小程序可用于以编程方式在 Firefox 中复制文本(然而,Java 小程序不是一个很好的解决方案)。

Regarding getSelection this has been answered by J. Steen,

var s;
if (window.getSelection) {
    s = window.getSelection();
}
else if (document.selection) {
    s = document.selection.createRange();
}

Regarding programmatically copy the selected text to clipboard, this is not working in Firefox due to security reasons. There are some workaround but the end user needs to change some settings. Java applets can be used to copy text in Firefox programmatically (java applets is not a nice solution however).

同尘 2024-08-13 23:22:31

这只是为了展示在 IE 中和使用其他浏览器时使用哪种方法,到目前为止它还不是一个完整的解决方案,并且至少包含一个逻辑陷阱。

var s;
if (window.getSelection) {
    s = window.getSelection();
}
else if (document.selection) {
    s = document.selection.createRange();
}

s 在 IE 中应该是一个文本范围,而在基于 Mozilla 的浏览器中它仍然是一个选择对象。

此处找到的信息:http://www.quirksmode.org/dom/range_intro.html

编辑:编辑以澄清。 =)

This is only to show which method to use when in IE and when using other browsers, it's not a complete solution by far and contains at least one logic trap.

var s;
if (window.getSelection) {
    s = window.getSelection();
}
else if (document.selection) {
    s = document.selection.createRange();
}

s should be a text range in IE, while it remains a selection-object in Mozilla-based browsers.

Information found here: http://www.quirksmode.org/dom/range_intro.html

Edit: Edited for clarification. =)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文