2015-01-17 55 views
-1

我用我的所有腳本的CDN,但我得到的錯誤 「未捕獲的SyntaxError:意外的標記<」未捕獲的SyntaxError:意外的標記<CDN

我一直停留在這幾個小時,和我不不知道爲什麼會有錯誤。

<!-- File: chapter10/simple-routing.html --> 
<html> 
<head> 
    <title>AngularJS Routing</title> 

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"> </script> 
    <script src="https//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script> 
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular.js"> </script> 
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular-route.js"> </script> 
    <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.8/angular-cookies.min.js"></script> 
    <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.8/angular-resource.js"></script> 
    <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.8/angular-sanitize.js"></script> 


</head> 
<body > 
    <h2>AngularJS Routing Application</h2> 

</body> 
</html> 
+1

圖。一個接一個地發表評論,直到停止。 – epascarello

+0

它可能是第二個(bootstrap)...因爲每次我包含它我都會得到這個錯誤。但爲什麼它會返回HTML? – abcf

回答

2

錯字:上的URL上面正在返回HTML代替的JavaScript的外面

https//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js 
    ^^ 
+0

這些錯別字會殺了你,如果沒有其他人,下次要小心;) – VPK

相關問題