0

當我在使用ASP.NET Core 1.0(.NET Framework)開發的網頁中使用Google Chrome Developer Tool時,項目我檢測到錯誤:bootstrap.js: Uncaught Error: Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3。無法找出錯誤的原因。我的網頁的source view如下:bootstrap.js:未捕獲錯誤:Bootstrap的JavaScript需要jQuery版本1.9.1或更高版本,但低於版本3

<!DOCTYPE html> 
<html> 
<head> 
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css"> 
     <link rel="stylesheet" href="/lib/bootstrap/dist/css/bootstrap.css" /> 
     <link rel="stylesheet" href="/css/site.css" /> 
</head> 
<body> 
Hello world.... and other content 
..... 

<script src="https://code.jquery.com/jquery-1.12.4.js"></script> 
     <script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script> 
     <script src="/lib/jquery/dist/jquery.js"></script> 
     <script src="/lib/bootstrap/dist/js/bootstrap.js"></script> 
     <script src="/js/site.js?v=EWaMeWsJBYWmL2g_KkgXZQ5nPe-a3Ichp0LEgzXczKo"></script> 

<!-- Visual Studio Browser Link --> 
<script type="application/json" id="__browserLink_initializationData"> 
    {"requestId":"a5c076a64ad7453f951bb2251bd6eec3","requestMappingFromServer":false} 
</script> 
<script type="text/javascript" src="http://localhost:58884/74edce98fdb542fc9b4a680a345ade26/browserLink" async="async"></script> 
<!-- End Browser Link --> 
</body> 
</html> 
+1

它看起來像你可能會包括兩個不同版本的jQuery。這個文件中的jQuery的版本是什麼:? –

+0

@LanceTurri該文件中的版本是:'jQuery JavaScript Library v3.1.0' – nam

回答

0

除了這些線路

<script src="https://code.jquery.com/jquery-1.12.4.js"></script> 
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script> 
<script src="/lib/jquery/dist/jquery.js"></script> 

把這一行:

<script src="https://code.jquery.com/jquery-2.2.4.min.js" ></script> 

而且順便說一句你的問題是重複的,我認爲:)

相關問題