iScroll文檔顯示如下所示的典型iScroll設置。iScroll,我如何打電話給我的滾輪?
var myScroll;
function loaded() {
setTimeout(function() {
myScroll = new iScroll('wrapper');
}, 100);
}
window.addEventListener('load', loaded, false);
我的問題是我該如何調用滾動條?如果我使用:
var currentItem = 5;
myScroll.scrollToElement('.nav > li:nth-child('+currentItem+')', 300);
我得到一個錯誤。
Uncaught TypeError: Cannot call method 'scrollToElement' of undefined
我遇到同樣的問題。你爲了這個工作需要改變什麼?我認爲在我的情況下,這不是超時 –