获取手机/设备上的滚动位置

时间:2019-03-28 12:54:48

标签: javascript mobile scroll

我想让移动设备滚动到某个位置,然后将其作为警报输出。我的代码在Chrome上可以在PC上正常运行,但不能在移动设备上运行。当我在PC上以chrome浏览器运行开发人员工具并在移动设备上选择视图时,即使它在PC视图模式下工作正常,也无法正常工作。如果我将位置设置为30像素,那么在移动设备视图中,屏幕根本不会移动,并且警报返回为零。我在做什么错了?

<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,400i,300,700" rel="stylesheet" type="text/css">
<script src="crafty/crafty_postcode.class.js"></script> 
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>    
<script type="text/javascript" src="https://cc-cdn.com/generic/scripts/v1/cc_c2a.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"> 
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"> 
</script>
</head>
<body id="mainBodyId" style="margin-left:0.25cm;height: 1500px;width:1200px;"  >'

<script  language="JavaScript" type="text/javascript"> 
window.scrollTo(0,30);
alert('Current scroll from the top: ' + window.pageYOffset);
</script>

<form>
<span>
    1<br>2<br>3<br>4<br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>1<br>2<br>3<br>4
    <br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>1<br>2<br>3<br>4<br>5<br>6<br>6<br>7
    <button>test</button>
    <br>8<br>9<br>10<br>1<br>2<br>3<br>4<br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>
    1<br>2<br>3<br>4<br>5<br>6<br>6<br>
    <button>test</button>
    1<br>2<br>3<br>4<br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>1<br>2<br>3<br>4<br>
    5<br>6<br>6<br>7<br>8<br>9<br>10<br>1<br>2<br>3<br>4<br>5<br>6<br>6<br>7<br>
    8<br>9<br>10<br>1<br>2<br>3<br>4<br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>1<br>
    2<br>3<br>4<br>5<br>6<br>6<br>7<br>8<br>
    <button>test</button>
    <br>10<br>1<br>2<br>3<br>4<br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>1<br>2<br>3
    <br>4<br>5<br>
    <button>test</button>
    6<br>6<br>7<br>8<br>9<br>10<br>1<br>2<br>3<br>4<br>5<br>6<br>6<br>7<br>8<br>
    9<br>10<br>1<br>2<br>3<br>4<br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>1<br>2<br>
    3<br>4<br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>1<br>2<br>3<br>4<br>5<br>6<br>6
    <br>7<br>8<br>9
    <button>test</button>
    <br>10<br>1<br>2<br>3<br>4<br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>1<br>2<br>
    3<br>4<br>5<br>6<br>6<br>7<br>8<br>9<br>10<br>
    <button>test</button>
</span>
</form>
</body>
</html>

在chrome开发人员工具和移动设备视图中,我希望屏幕垂直移动到30像素,并发出警报以输出30。

1 个答案:

答案 0 :(得分:0)

尝试一下,而不要使用window.scrollTo(0, 30)

window.addEventListener('load', function(){
   window.scrollTo(0,30);
});