UIwebView 禁止弹出菜单

在UIwebView 发现绑定longTap事件的操作中,在iso会有菜单弹出(复制黏贴,词典等),影响我们设定的交互操作,估要屏蔽之~

    window.onload=function(){
        document.documentElement.style.webkitTouchCallout = "none"; //禁止弹出菜单
        document.documentElement.style.webkitUserSelect = "none";//禁止选中
    };
原文地址:https://www.cnblogs.com/cuoreqzt/p/4437388.html