怎样在百度空间里禁止使用右键

怎样在百度空间里禁止使用右键,急需代码。
2025-05-22 10:20:08
推荐回答(2个)
回答(1):

该设置已经失效

/*禁止选择 鼠标右键特效*/
#main{
background:url('javascript:
document.oncontextmenu=new Function("event.returnValue=false;");
document.onselectstart=new Function("event.returnValue=false;");
')}
(已经失效,只预览时显示效果)
document.oncontextmenu=new Function("event.returnValue=false;");禁止鼠标右键
document.onselectstart=new Function("event.returnValue=false;");
禁止选择/*鼠标触碰 按钮下陷*/
a:hover{}中加入 position:relative; left:2px; top:1px; clip:rect( );

回答(2):