39

我创建了以下文档:

<g>
    <path class=​&quot;line" name=​&quot;gene_1" stroke=​&quot;#aec7e8" d=​&quot;M10.47...">​&lt;/path>​
    <path class=​&quot;line" name=​&quot;gene_2" stroke=​&quot;#aec7e8" d=​&quot;M10.47...">​&lt;/path>​
    <path class=​&quot;line" name=​&quot;gene_3" stroke=​&quot;#aec7e8" d=​&quot;M10.47...">​&lt;/path>​
    ...
</g>

当我将鼠标悬停在每条路径上时,我想将其最后附加到内部,svg:g因此它出现在其他行的顶部,但我不知道如何正确选择parentNode

function onmouseover(d, i){
  var current_gene_name = d3.select(this).attr("name"),
      current_gene_pcp = d3.select(".line[name=" + current_gene_name + "]");

  p1 = this.parentNode 

  p2 = current_gene_pcp[0].parentNode

  p3 = current_gene_pcp[0][0].parentNode

  //p.appendChild(this);
}

p1有效,但我想确保它this是 a .line,所以我更喜欢使用current_gene_pcp,但作为父级p2返回<html></html>,即使p3返回正确的<g></g>. 最后一个版本似乎是一个等待发生的错误。有没有更好的办法?

4

6 回答 6

49

D3 选择只是一个包裹在所选元素周围的双数组。正如您在 中找到的那样p3,您可以根据需要取消引用数组以找到您的第一个节点。但是,确实存在更好的方法:

从文档中selection.node()

返回当前选择中的第一个非null元素。如果选择为空,则返回null

在你的情况下:

var dad = current_gene_pcp.node().parentNode;

但是,如果您不需要 DOM 句柄以外的行,您不妨直接获取它:

// Search document-wide...
var dad = document.querySelector(".line[name=" + current_gene_name + "]");

// ...or only as a child of the current DOM element
var dad = this.querySelector(".line[name=" + current_gene_name + "]");
于 2012-05-15T19:55:15.943 回答
35

这是将鼠标悬停元素移到前面的快速方法:

selection.on("mouseover", function() { this.parentNode.appendChild(this); });

另请参阅 d3-js 组中的相关线程

于 2012-05-15T21:08:30.410 回答
5

有两种方法可以访问它。
要么像这样使用第三个变量someNode.attr("someAttrib", function(d, i, j) { console.log(d, i, j); });. j包含您提供给父​​节点的数据。
或使用d3.select(this.parentNode).data()[0].id;.

一个例子:

<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<div id="area", width="1000px" height="1000px"></div>
<script>
var GAP = 10, NODE_RADIUS = 14;

  var nodes = [
    {id: 1, prop: [{id: 1, something: 1}], abc: 1},
    {id: 2, prop: [{id: 1, something: 1}, {id: 2, something: 1}, {id: 3, something: 1}], abc: 2},
    {id: 3, prop: [{id: 1, something: 1}, {id: 2, something: 1}], abc: 3},
    {id: 4, prop: [{id: 1, something: 1}], abc: 4},
    {id: 5, prop: [{id: 1, something: 1}], abc: 5},
    {id: 6, prop: [], abc: 6}
  ];

var nodeLayer = d3.select("#area").selectAll(".node").data(nodes, function(d) {return d.id; });
var iNodes = nodeLayer.enter().append("svg").attr("class", "node");
    //append the black circle
    iNodes.append("circle")
                .style("fill", "black")
                .attr("r", NODE_RADIUS)
                .attr("cx", function(d) {return 10 + d.id * 10;})
                .attr("cy", 100);

    iNodes.append("g").selectAll(".prop").data(function(d) {return d.prop;}).enter()
            .append("text")
                .text(function(d,i,j){console.log("parent id="+j); return d3.select(this.parentNode).data()[0].id;})
                .attr("dx", 50)
                .attr("dy", 50)
                .style("font-size", "8px")
                .style("fill", d3.rgb(180,0,0))
                .style("text-anchor", "middle");

</script>
</body>
于 2014-11-26T11:10:02.850 回答
0

出于某种原因,我不得不提高 2 倍水平:console.log(">>"+my_chart.node().parentNode.parentNode.id+"<<")

于 2019-11-07T16:05:55.240 回答
0

随着 D3 v4的发布,这已成为某种XY 问题。不再需要parentNode重新插入元素作为其父元素的最后一个子元素。因为从 D3 上的那个版本开始提供selection.raise()方法:

选择提高()

按顺序重新插入每个选定元素,作为其父元素的最后一个子元素。相当于:

selection.each(function() {
  this.parentNode.appendChild(this);
});

使用 D3 v6将事件作为第一个参数传递给事件侦听器(请参阅更改日志),您的代码可以像这样简单:

function onmouseover(event) {
  d3.select(event.target).raise();
}

看看下面的演示:

d3.select("g")
  .on("mouseover", event => d3.select(event.target).raise())
<script src="https://d3js.org/d3.v6.js"></script>

<svg width="400" height="400">
  <g>
    <rect x="100" y="50" width="100" height="100" fill="red"></rect>
    <rect x="150" y="50" width="100" height="100" fill="blue"></rect>
  </g>
</svg>

于 2021-01-05T14:31:57.910 回答
0

我做过的一种方法是:

bars.on('mouseover', d => {
let parentNode = d3.select(this.parentNode);
let tooltip = parentNode.append('rect)

this关键字,你可以访问当前节点,然后触摸它的父节点。

于 2021-01-05T04:58:48.423 回答