禁止选中web页面内容

<body  unselectable="on" onselectstart="return false;" style="-moz-user-select:none;">
       <h1>不能被选中</h1>
</body>

 

 

 

<body oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empty()' oncopy='document.selection.empty()' onbeforecopy='return false' onmouseup='document.selection.empty()'>
	<h1>不能被选中</h1>
</body>

 

 

 

你可能感兴趣的:(Web)