H5页面设置图片和span标签不能被选中1.防止span标签等文字被选中添加-moz-user-select:none;对应元素的CSS样式webkit-user-select:none;-ms-用户选择:无;-khtml-用户选择:无;用户选择:无;2.防止浏览器点击图片查看(uc浏览器常见)1.背景图片插入(这是比较常用的方式)background:url(./img/tip.png)norepeatcenter;background-size:cover;2.使用js事件防止默认行为的方法constimgMask=document.getElementById('mask');imgMask.addEventListener('click',function(event){event.stopPropagation();event.preventDefault();});
