我正在实现一个JavaScript函数
document.getElementById("NTTable").style.display = "block"
(完成),并将该元素(或其附近的元素)放置在屏幕中央。当JavaScript函数运行时,屏幕立即转到顶部。
我尝试了各种offset和scrollTop,但是什么也没有。我可以从这里去哪里?
答案 0 :(得分:1)
使用jquery show
及其回调函数:
$("#NTTable").show(0,function(){ //0 is to simulate display="block" immediatley
//your codes to scrolltop comes here
})