首页 > 长按移动端页面图片会出现收藏或保存图片提醒,怎样取消

长按移动端页面图片会出现收藏或保存图片提醒,怎样取消

如题描述:长按移动端页面图片会出现收藏或保存图片提醒,有什么方式可以取消这样的提醒。


css 设置:

-webkit-touch-callout: none /* disables the callout */

参考:
http://www.css88.com/book/css/webkit/behavior/touch-callout.htm


window.ontouchstart = function(e) { e.preventDefault(); };


img { -webkit-user-select: none; }应该也可以,题主可以试试。


try

img { pointer-events: none; }
【热门文章】
【热门文章】