iScroll を使用して webapp でスクロールを実行していますが、非常に満足しています。しかし、この場合、ページの読み込み時に特定のliに自動スクロールする必要がありますが、うまくいきません。
これが私がやろうとしていることです:
var myScroll;
function loaded () {
myScroll = new IScroll('#wrapper', { mouseWheel: true, click: true });
}
document.addEventListener('touchmove', function (e) { e.preventDefault(); }, false);
myScroll.scrollToElement(document.querySelector('#scroller li:nth-child(50)'), null, null, true);
次のようなリンクを挿入すると:
<a href="javascript:myScroll.scrollToElement(document.querySelector('#scroller li:nth-child(50)'))">
すべてが正常に機能します...何が間違っていますか?