0

我正在lite-server运行npm run lite

我的 jQuery 文件正在正常加载,我的 css 也在 css 文件夹中,但是浏览器甚至没有对该main.js文件发出 GET 请求。

main.js文件位于 /js 文件夹中style.css,与 /css 文件夹中一样

我错过了什么吗?

这是我的 HTML

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="node_modules/jquery/dist/jquery.js"></script>
        <script type="text/javascript" scr="js/main.js"></script>
        <link rel="stylesheet" type="text/css" href="css/style.css">
    </head>
    <body>
        test
    </body>
</html>

编辑: -> 刚刚还意识到浏览器没有为此文件发出 GET 请求。而且,如果我直接向 js 文件发出请求,服务器也会返回它。

index.html 请求 main.js 请求

npm run lite运行:

$ npm run lite

> sdfa@1.0.0 lite C:\temp\nodeIntro
> lite-server

Did not detect a `bs-config.json` or `bs-config.js` override file. Using lite-server defaults...
** browser-sync config **
{ injectChanges: false,
  files: [ './**/*.{html,htm,css,js}' ],
  watchOptions: { ignored: 'node_modules' },
  server: { baseDir: './', middleware: [ [Function], [Function] ] } }
[BS] Access URLs:
 ------------------------------------
       Local: http://localhost:3000
    External: http://192.168.1.4:3000
 ------------------------------------
          UI: http://localhost:3001
 UI External: http://192.168.1.4:3001
 ------------------------------------
[BS] Serving files from: ./
[BS] Watching files...
17.03.11 12:52:27 304 GET /index.html
17.03.11 12:52:27 304 GET /node_modules/jquery/dist/jquery.min.js
17.03.11 12:52:27 304 GET /node_modules/jquery/dist/jquery.js
17.03.11 12:52:27 304 GET /css/style.css
4

1 回答 1

1

您已经通过scr输入了src

错误

正确的

<script type="text/javascript" src="js/main.js"></script>
于 2017-03-11T18:30:03.743 回答