0

我正在尝试制作一个颜色选择器。
当悬停在弧上时,它应该突出显示里面的文本,这样用户就可以按 ctrl-c 进行复制。我已经有了正确的元素。在 Google 上搜索“选择文本”等并不会产生很好的结果。

text.on('mouseover',function() {
               "this"- object is the text that should get highlighted.
       // Select text so user can press ctrl-c to copy...
});

我知道 jQuery 中有 this.select() 但在 d3.js(或常规 javascript)中有类似的东西吗?

4

1 回答 1

0

Yogesh 在他的评论中指出了一个很好的解决方案。它很好地解决了这个问题。

Sitepoint论坛讨论

于 2013-08-23T16:20:46.700 回答