我有一个D3 Force Layout可以在FireFox和Chrome上正常工作,但是我附加到SVG节点上的标签没有出现在Safari浏览器中。代码如下。怎么了?当我在FireFox / Chrome检查器中查看异物时,它会显示我追加到异物的html。但是当我查看Safari检查器时,html根本就没有。
编辑:这是问题的simplified jsfiddle。如果您在Chrome或Firefox中打开它,它可以正常工作。如果你在Safari中打开它,它就不会。
nodeTxt = svg.selectAll(".nodetxt")
.data(nodeTxtData)
.enter()
.append("foreignObject")
.attr("class", "nodeTxt")
.attr({
"width": function(d) { return d.radius; },
"height": function(d) { return d.radius; }
})
.style({
"font-size": function(d) { return d.radius/4 + "px";},
"border-radius": function(d) { return d.count * 2;},
"-webkit-border-radius": function(d) { return d.count * 2;},
"-moz-border-radius": function(d) { return d.count * 2;},
"position": "relative",
"pointer-events": "none"
})
.html(function(d) {
var uID = d.name.replace(/([.*+?^=!;:$%&'," "{}()|\-[\]\/\\])/g, "").substring(0,25);
if (uID !== null) {
return '<div class="htmlDiv" id=' + uID + ' style="width:' + d.count * 4 + 'px; height:' + d.count * 4 + 'px;' +
'border-radius:' + d.count * 2 + 'px;' + '-webkit-border-radius:' + d.count * 2 + 'px;' +
'-moz-border-radius:' + d.count * 2 + 'px;">' + d.name + '</div>';
} else {
console.log(d);
return '<div id="bad"></div>';
}
})
.attr({
"transform": function(d) {
var uID = d.name.replace(/([.*+?^=!;:$%&'," "{}()|\-[\]\/\\])/g, "").substring(0,25);
if(uID !== null){
var w1 = (parseInt(d3.select(this).style("width"), 10) / 2),
w2 = d.count * 2,
y = -d.count * 2,
x = (w1 > w2) ? -w1 : -w2;
return "translate(" + x + "," + y + ")";
} else {
return "translate(0,0)";
}
},
"opacity": 1
});