也有可能是在mui-scroll区域内受到的影响,
我是巧克力
- 发布:2016-05-30 09:54
- 更新:2016-06-20 19:54
- 阅读:1919
蛋蛋_0713
document.querySelector('textarea').addEventListener('touchstart', function(e) {
e.stopPropagation();
});
document.querySelector('textarea').addEventListener('touchmove', function(e) {
e.stopPropagation();
});
document.querySelector('textarea').addEventListener('touchend', function(e) {
e.stopPropagation();
});
2016-06-20 19:53