我正在尝试制作一个颜色选择器。
当悬停在弧上时,它应该突出显示里面的文本,这样用户就可以按 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)中有类似的东西吗?