由於某些原因,.scrollTop
只能部分工作。它開始滾動並在1-2釐米後停止。這是一個大頁面,容器#topdiv
位於頁面的頂部。所有其他功能 - .prepend .hide .close在這裏工作正常。控制檯不顯示任何錯誤。我試過.scrollTo
而不是.scrollTop
- 結果相同。scrollTop只能部分工作 - 1-2釐米後停止
jQuery(function ($) {
$(document).ready(function() {
$(document).on('submit', '#saverepost', function (e) {
var str = $(this).serialize();
$.ajax({
type: "POST",
url: "/script.php",
data: str,
beforeSend: function() {
$('#message').show();
$("#message").html('<img src="/loading.gif" />');
},
success: function (msg) {
$.lbox.close();
$("#message").hide();
$("#posts").prepend(msg);
$("#topdiv").scrollTop(0);
}
});
return false;
});
})
});
FYI你有2個文件現成的處理程序 - 您可以安全地刪除其中的一個。 –
你可以發佈你的HTML DOM結構。 – dreamweiver