7
我正在嘗試實現恆星插件,據我所知,我已經包含了所有必需的js。然而,在開發工具控制檯中,我總是收到'Uncaught TypeError:$(...)。恆星不是函數'。
這是我的頭部標籤:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UFT-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>QE | Welcome</title>
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/stuff.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/themes/smoothness/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.2/jquery-ui.min.js"></script>
<script src="js/jquery.stellar.js"></script>
<script src="js/scrip.js"></script>
<script src="js/jquery.nicescroll.js"></script>
而這是scrip.js文件錯誤指的是:
$(document).ready(function() {
$(window).stellar();
});
$(document).ready(
function() {
$("html").niceScroll({
cursorcolor:"rgba(30,30,30,.5)",
zindex:999,
scrollspeed:100,
mousescrollstep:50,
cursorborder:"0px solid #fff",
});
});
請幫助我
在Devtools的Network選項卡上,你是否正確地獲取了'js/jquery.stellar.js'腳本? – GregL
是js/jquery.stellar.js狀態爲''已完成' – Seb
響應數據是該文件的內容嗎? – GregL