UIwebView 禁止弹出菜单
在UIwebView 发现绑定longTap事件的操作中,在iso会有菜单弹出(复制黏贴,词典等),影响我们设定的交互操作,估要屏蔽之~
window.onload=function(){ document.documentElement.style.webkitTouchCallout = "none"; //禁止弹出菜单 document.documentElement.style.webkitUserSelect = "none";//禁止选中 };
UIwebView 禁止弹出菜单在UIwebView 发现绑定longTap事件的操作中,在iso会有菜单弹出(复制黏贴,词典等),影响我们设定的交互操作,估要屏蔽之~ window.onload=function(){ document.documentElement.style.webkitTouchCallout = "none"; //禁止弹出菜单 document.documentElement.style.webkitUserSelect = "none";//禁止选中 };
|