最近在写云笔记,学到了两个有用的API
oncontextmenu 事件,在用户右击鼠标触发并打开上下文菜单,可以用其中自定义事件,并用 return false 拦截浏览器默认事件。
el.oncontextmenu=()=>{
// some code...
return false;
}
onselectstart 事件,用户选中文字(蓝框,可复制),同样可用 return false 拦截。
el.onselectstart=()=>{
return false;
}
网友评论