我有一个弹出的模式,当它再次打开时,我希望滚动条位于顶部,而不是用户可能离开的位置。我正在使用 .on 和 scrollTop 但它不起作用。但是,当我在 firebug 控制台中运行代码行时,它确实有效。
$("#mainContentWindow").on("click", ".question-toggler", function (event) {
$(".modal-body").scrollTop(0);
$("#helpSectionDialog").modal('show');
var helpClass = $("#main-content-pane > div").attr("id");
$(".help-content").hide();
$(".help-content." + helpClass).show();
});