这是我的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h1>Hello Noobs</h1>
<p>KodySimpson Tutorial</p>
<script src="KodySimpson/hello.js"></script>
</body>
</html>
这是我的屏幕截图,以便您可以看到我所看到的内容:
我是js的新手,我已经尝试过寻找答案,但我找不到解决问题的方法。请帮忙。
编辑:
以下是Visual Code Live Reload ng-controller="..."
的解决方案:
https://github.com/ritwickdey/vscode-live-server/issues/22
<!DOCTYPE html>
<html ng-app="TestApp">
<head>
</head>
<body ng-controller="testCtrl">
</body>
</html>
以前的回复:
javascript和html文件位于同一文件夹中。
使用 :
<script src="hello.js"></script>
要么
<script src="./hello.js"></script>