我想在我的項目中使用無限ajax滾動插件。我只是跟着官方網站,幷包括必要的JavaScript文件。以下是我的代碼:無限ajax滾動沒有在Django工作
<div class="row">
<div class="col-lg-4">
<div class="bootstrap-card">
<img src="{% static 'images/1.jpg' %}" class="img-responsive img-rounded" alt="card imag">
<div class="overlay">
<a class="info" href="#">View Details</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="bootstrap-card">
<img src="{% static 'images/1.jpg' %}" class="img-responsive img-rounded" alt="card imag">
<div class="overlay">
<a class="info" href="#">View Details</a>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="bootstrap-card">
<img src="{% static 'images/1.jpg' %}" class="img-responsive img-rounded" alt="card imag">
<div class="overlay">
<a class="info" href="#">View Details</a>
</div>
</div>
</div>
</div>
<script src="{% static 'hw1/js/callback.js' %}"></script>
<script src="{% static 'hw1/js/jquery-ias.min.js' %}"></script>
<div id="pagination">
<a href="page2.html" class="next">next</a>
</div>
<script>
$(document).ready(function() {
var ias = jQuery.ias({
container: '.row',
item: '.col-lg-4',
pagination: '#pagination',
next: '.next',
delay: 1250
});
});
ias.extension(new IASSpinnerExtension());
ias.extension(new IASTriggerExtension({offset: 2}));
ias.extension(new IASNoneLeftExtension({text: "You reached the end"}));
</script>
因此,這裏page2.html是另一個頁面,它確實存在。
所以沒有任何人知道爲什麼錯誤信息是:
(index):244 Uncaught ReferenceError: ias is not defined(…)(anonymous function) @ (index):244 jquery-3.1.1.min.js:2 jQuery.Deferred exception: jQuery.ias is not a function TypeError: jQuery.ias is not a function at HTMLDocument. (http://localhost:8000/:235:24) at j (http://localhost:8000/static/hw1/js/jquery-3.1.1.min.js:2:29948) at k (http://localhost:8000/static/hw1/js/jquery-3.1.1.min.js:2:30262) undefined
嗨感謝您的解釋。但是,我仍然遇到同樣的錯誤。它似乎總是尋找在jquery-3.1.1.min.js中定義的函數。錯誤消息是:jquery-3.1.1.min.js:2 jQuery.Deferred異常:jQuery.ias不是函數TypeError:在HTMLDocument中,jQuery.ias不是函數 。在http(// localhost:8000/static/hw1/js/jquery-3.1.1.min.js:2:29948)處的(http:// localhost:8000 /:235:24) (http:// localhost:8000/static/hw1/js/jquery-3.1.1.min.js:2:30262) –
user2970089
@ user2970089確實是http:// localhost:8000/static/hw1/js/jquery-ias .min.js返回javascript還是會給出錯誤?如果發生錯誤,您的靜態文件可能沒有正確設置,或者您的網址中存在拼寫錯誤。 – Soviut
它返回給我的JavaScript。我檢查了沒有錯別字,我也使用類似的東西來添加其他JavaScript文件。所以我很困惑爲什麼這個函數不能被發現... – user2970089