作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在collapsible tree example中的节点文本上添加超链接。
我怎样才能做到这一点?
最佳答案
我是Javascript/svg/d3js菜鸟,但我通过在文本上放置超链接的透明矩形来“解决”此问题,此解决方法可以作为bl.ock使用。:
nodeEnter
.append("a")
.attr("xlink:href", function (d) { return "http://www.example.com/flare/" + d.id; })
.append("rect")
.attr("class", "clickable")
.attr("y", -6)
.attr("x", function (d) { return d.children || d._children ? -60 : 10; })
.attr("width", 50) //2*4.5)
.attr("height", 12)
.style("fill", "lightsteelblue")
.style("fill-opacity", .3) // set to 1e-6 to make transparent
;
clickable
style和
add .on("click", click)
to the circle,而不是group(
g
)元素。
关于d3.js - 将超链接添加到可折叠树上的节点文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14951392/
我是一名优秀的程序员,十分优秀!