我正在尝试重现此帖子中解释的此 SVG的行为,但将 JavaScript 放在 HTML 页面中,并使用 D3.js。我试试这个:
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="http://d3js.org/d3.v3.js"></script>
<script>
var svg = d3.select("body").append("svg")
.attr("width", 300)
.attr("height", 300)
.attr("id","svgBox");
var svgRect = svg.append("rect")
.attr("width", 200)
.attr("height", 200)
.attr("x", 50)
.attr("y", 50)
.attr("id","rect1")
.style("fill", "#AAFFAA")
.style("stroke", "#222222");
var root = document.getElementById("svgBox");
var rpos = root.createSVGRect();
rpos.x = 150;
rpos.y = 150;
rpos.width = rpos.height = 1;
var list = root.getIntersectionList(rpos, null);
console.info(list);
</script>
但它不起作用。在 Firefox 中尝试时,错误是
TypeError:root.getIntersectionList 不是函数
在 Chrome 中,没有错误,但该功能似乎不起作用,因为列表中的结果始终为空。
有没有办法调用该函数,或者我应该使用另一种方法检测该点是否在路径内?