您的位置:首页 > 其它

暴力猴简单脚本 - 去除右键菜单、文本选择限制

2014-01-01 20:08 316 查看
留作自用

document.oncontextmenu = null;

enableSelection(document.body);

function enableSelection(target) {
if (typeof target.onselectstart != "undefined")
// IE
target.onselectstart = null;
else if (typeof target.style.MozUserSelect != "undefined")
// Firefox
target.style.MozUserSelect = "";
else
{
target.onmousedown = null;
target.onmouseup = null;
}
target.style.cursor = "";
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: