html 屏蔽文本选中 屏蔽右键

屏蔽文本被选中:

在需要屏蔽的元素标签上添加ondblclick="return false;" onselectstart="return false"事件即可。例如

<body ondblclick="return false;" onselectstart="return false"></body>

 

 

屏蔽右键:

在需要屏蔽的元素标签上添加oncontextmenu="self.event.returnValue=false"事件即可。例如:

<body oncontextmenu="self.event.returnValue=false"></body>
 

你可能感兴趣的:(html)