我的p5.js
和sketch.js
脚本都不会加载。
我的index.html
由Node.js
我认为我滥用了HTML中src
标记中的<script>
值。
我的p5.js
脚本位于一个级别,位于名为P5
的文件夹中,我的sketch.js
文件位于与P5Scripts
相同的目录中名为index.html
的文件夹中文件。
在Chrome控制台中,我收到以下消息:
Loading failed for the <script> with source “http://45.76.140.199:3000/P5/p5.js”.
和
Loading failed for the <script> with source “http://45.76.140.199:3000/P5Scripts/sketch.js”.
我可以看到我的src
属性错误,但加载这些脚本的正确方法是什么?
index.html:
<!doctype html>
<html>
<head>
<title>My Website</title>
</head>
<script src="../P5/p5.js"></script>
<script src="P5Scripts/sketch.js"></script>
<body>
</body>
</html>