这是我的代码:jsFiddle
var curSlot = 9;
var numOfSlot = 10;
function newDivs() {
$("body").append("<div class = 'imgBox'></div>");
}
for (var i = 0; i < numOfSlot; i++) {
newDivs();
}
$(".imgBox").height(window.innerHeight);
scrollTo(0, innerHeight * curSlot);
为什么加载后窗口总是在随机元素上滚动而不是停留在滚动位置???在 jsFiddle 中它工作正常,但在 google chrome 和 mozzila(也许在其他浏览器中我现在不使用)它不起作用。