62,267
社区成员
发帖
与我相关
我的任务
分享function goto(position)
{
if(position=="bottom")
{
document.documentElement.scrollTop=document.body.clientHeight;
document.body.scrollTop=document.body.clientHeight;
}
if(position=="top")
{
document.documentElement.scrollTop=0;
document.body.scrollTop=0;
}
} function window.onbeforeunload() {
opener. goto("top");
}
onbeforeunload()事件将会在关闭窗口前执行,你也可以用户决定是否关闭窗口