我正在尝试实现恒星插件,我可以看到,我已经包含了所有必要的js。但是,在开发工具控制台中,我一直得到' Uncaught TypeError:$(...)。stellar不是函数'。
这就是我在head标签中的含义:
<!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",
});
});
请帮帮我
答案 0 :(得分:3)
我发现问题出在js / vendor / jquery.js上,而我忘了将其放在index.html文件的底部。当我删除它时,恒星功能起作用。不知道为什么会影响stellar.js。
答案 1 :(得分:0)