<html oncontextmenu="doNothing()"> <head> <title>屏蔽鼠标右键</title> <script type="text/javascript"> function doNothing(){ window.event.returnValue=false; return false; } </script> </head> <body oncontextmenu="doNothing()"> <div style="width:30px;height:30px;background-color:#12aded;"></div> </body> </html>
阻止右键单击事件oncontextmenu

最新推荐文章于 2024-09-21 11:23:29 发布
