こんにちは、以下は私の完全な HTML および Javascript コードですが、ブラウザで実行中にエラーが表示されますUncaught ReferenceError: draw is not defined test.html:13
。
<html>
<head>
<title>Testing D3</title>
<script type="text/javascript" src="d3-v5.js"/>
<script type="text/javascript">
function draw(data){
console.log(data);
}
</script>
</head>
<body>
<script type="text/javascript">
draw(12);
</script>
</body>
</html>