我有一個HTML頁面,我想包括一些js文件就像HTML - 包含JavaScript中的父目錄
<script type="text/javascript" src="../bower_components/jquery/jquery.js"></script>
,但我一直通過
越來越Resource interpreted as Script but transferred with MIME type text/html: "http://localhost:8080/bower_components/jquery/jquery.js".
其次
Uncaught SyntaxError: Unexpected token < jquery.js:1
在de veloper控制檯。我想在angular.js一些教程和Node.js的
解決 https://stackoverflow.com/a/21823343/1451512
將瀏覽器指向「http:// localhost:8080/bower_components/jquery/jquery.js」會發生什麼?看起來它正在返回HTML,也許是一個錯誤頁面? –
解決:我能夠使用http://stackoverflow.com/a/21823343/1451512來解決它。 – dopplesoldner