ファイルにこれindex.html
がありますが、追加したい段落が表示されませんD3
<!DOCTYPE html>
<html>
<head>
<title> D3 page template </title>
<script type="text/javascript" src = "d3/d3.v3.js"></script>
</head>
<body>
<script type="text/javascript">
d3.select("body").append("p").text("new paragraph!");
</script>
</body>
</html>
参照している場所へのパスはD3.js
正しいはずです。ブラウザーで要素を検査すると、D3
リンクをクリックしてソース コードに移動できるからです。