也尝试 -webkit-touch-callout:none;和 pointer-events: none;但是对安卓是好像是没有效果.有以前解决的吗?
1 回答
翻翻过去那场雪
TA贡献2065条经验 获得超13个赞
监听触摸事件,禁止触发默认行为
window.ontouchstart = function(e) { if (e.target.tagName === 'img') e.preventDefault(); };
添加回答
举报
0/150
提交
取消