我正在尝试在 javascript 中创建一个对象并将文本附加到它。我可以很好地将文本附加到 svg 但是当我尝试将它附加到一个圆圈时,它不会出现。
这就是我的代码的样子:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>D3 Tutorial</title>
<script src="http://d3js.org/d3.v3.min.js"> </script>
</head>
<body>
<script>
var canvas = d3.select("body")
.append("svg")
.attr("width", 500)
.attr("height", 500);
var circle = canvas.append("circle")
.attr("cx", 400)
.attr("cy", 350)
.attr("r", 25);
canvas.append("text")
.attr("fill", "red")
.attr("y", 50)
.text("hello");
circle.append("text")
.attr("fill", "red")
.attr("y", 50)
.text("hello");
</script>
</body>
</html>
这是它的外观: