手机上加载的网页,手指长按的时候会弹出复件和粘贴的选项。
如果我们需要禁止这种弹出选项,可以加一如下js代码
<script type=”text/javascript”>
function OnLoad()
{
document.documentElement.style.webkitTouchCallout = “none”; //禁止弹出菜单
document.documentElement.style.webkitUserSelect = “none”;//禁止选中
}
</script>
同时要在body标签加上
<body onload=”OnLoad()”>