我正在尝试在我的网站上禁用水平滚动而没有成功。我在某个地方读到了这个工作:
<head>
<script>
document.addEventListener('touchmove', function(e) {
e.preventDefault();
}, false);
</script>
<head>
我不太了解javascript,所以我不知道它是否应该有用。
我已经设置了这样的视口:
<meta name="viewport" content="widht=device-widht, initial-scale=1, user-scalable=no">
我仍然可以在iPhone上水平滚动,以便网页离开屏幕并显示“默认的野生动物园背景”。
有什么不对或丢失?