我想:
这是一段代码:
d3.xml("/img/Cell.svg").mimeType("image/svg+xml")
.get(function (error, documentFragment) {
if (error) throw error;
var svgNode = documentFragment.getElementsByTagName("svg")[0];
document.body.appendChild(svgNode);
d3.select("g#ID_of_G"); // returns an empty selection in Safari, works in Chrome and Firefox
...
});
我还尝试将选择更改为d3.select("svg").select("g#ID_of_G")
,但这并未改变任何内容。
答案 0 :(得分:0)
my @type_consent = @{$params->{type_consent}};
此错误报告帮助我找到解决方案:https://bugs.webkit.org/show_bug.cgi?id=83438