Home > Web Front-end > H5 Tutorial > body text

微信中打开网页,下拉会显示网页由XXX提供,但是有些网页却没有,不同平台不同手机也不一样,这是什么原因?

不言
Release: 2018-05-16 15:48:30
Original
8781 people have browsed it

在iOS的手机中下拉大部分会显示网页由XXX提供,有些就不响应下拉。
在Nexus5永远都不响应下拉。
在HTC中却响应下拉。
PS:还有iOS的手机会相应上拉,但是Android基本没有,这些是由什么原因造成的?如何避免响应这些事件?
PSS:以上背景均为微信中打开一个网页。

回复内容:

可以写个js方法干掉这个现象,拉不动的时候就没有了.
代码如下:

$(document).ready(function(){  
    function stopScrolling( touchEvent ) {   
        touchEvent.preventDefault();   
    }  
    document.addEventListener( 'touchstart' , stopScrolling , false );  
    document.addEventListener( 'touchmove' , stopScrolling , false );  
});
Copy after login

显然这个是用jquery的,你也可以不用,重点是用preventDefault把事件后面的反馈给停了。
语法

event.preventDefault()
Copy after login

在SegmentFault里面看到了一篇文章,不知道能不能解决你的问题
微信里面防止下拉"露底"组件我也搞不明白,为什么有些网页在微信上显示,但把域名复制在电脑上又查找不出,这是为何呢?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!