方法1.js代码实现阻止touchmove事件冒泡
$('body').on('touchmove', function (event) { event.preventDefault(); });
关于冒泡更深入的理解
http://docs.wex5.com/wex5-ui-question-list-2024/
方法2.修改原生配置config.xml
加上
<preference name="DisallowOverscroll" value="true" />
重新打包
方法1.js代码实现阻止touchmove事件冒泡
$('body').on('touchmove', function (event) { event.preventDefault(); });
关于冒泡更深入的理解
http://docs.wex5.com/wex5-ui-question-list-2024/
方法2.修改原生配置config.xml
加上
<preference name="DisallowOverscroll" value="true" />
重新打包
评一波