上下滑动聊天记录的时候,特别容易触碰到图片,一旦触碰到图片就会触发图片放大的功能
$('.insertLeftTextRobot img').off("touchend");
$(".insertLeftTextRobot img").on("touchend", function() {
var _this = $(this);
enlarge.imgShow("#outerdiv", "#innerdiv", "#bigimg", _this);
})
什么叫 tap 会穿透?
注意:
tap
并不是规范事件,多半是你用的库实现有问题。如果你没有自己实现tap
,直接用click
试试。