如果你不想别人在浏览你页面的时候鼠标右键的话,你可以在前端代码中插入下面的语句
document.oncontextmenu=new Function("return false") document.onselectstart=new Function("return false")
如果你浏览的页面无法右键,你也可以把上面两句的 return 改成 true
return
true