Español
<html> <title>downcodes.com</title> <head> <script type="text/javascript"> function enableSelection(target){ if (typeof target.onselectstart!="undefinido") // Destino de ruta IE. onselectstart=function(){return false} else if (typeof target.style.MozUserSelect!="undefinido") //Ruta de Firefox target.style.MozUserSelect="none" else //Todos los demás destinos de ruta (es decir, Opera). onmousedown=function(){return false} target.style.cursor = "default" } //Usos de muestra //disableSelection(document.body) //Deshabilitar la selección de texto en todo el cuerpo //disableSelection(document.getElementById("mydiv" )) //Deshabilitar la selección de texto en el elemento con id="mydiv" </script> </head> <body> <div id="test" style="background:#f1f1f1;border:1px #000 dotted">这里不能选择</div> <script type="text/javascript"> var somediv=document.getElementById("test") enableSelection(somediv) //deshabilitar la selección de texto dentro de DIV con id="mydiv" </script> </ cuerpo> </html>