我有一些 javascript,我用来关闭屏幕。作为其中的一部分,我希望页面滚动到顶部,所以我正在使用window.scrollTo(0, 0)
适用于 android 和 iphone 浏览器的页面,但 windows 8 手机没有滚动......
var dismissWelcome;
dismissWelcome = function(e) {
var welcome;
if (((e != null ? e.stopPropagation : void 0) != null) && ((e != null ? e.preventDefault : void 0) != null)) {
e.stopPropagation();
e.preventDefault();
}
welcome = document.getElementById('welcome');
welcome.style.display = 'none';
window.scrollTo(0, 0);
};
addEvent('dismiss-welcome', 'touchstart', dismissWelcome);
我如何才能window.scrollTo(0, 0)
在 Windows 8 手机(最好是所有已知设备)上工作。