中文(简体)
<html> <title>downcodes.com</title> <head> <script type="text/javascript"> function disableSelection(target){ if (typeof target.onselectstart!="undefined") //IE 路由目标。 onselectstart=function(){return false} else if (typeof target.style.MozUserSelect!="undefined") //Firefox 路由 target.style.MozUserSelect="none" else //所有其他路由(即:Opera)目标。 onmousedown=function(){return false} target.style.cursor = "default" } //用法示例 //disableSelection(document.body) //禁用整个正文的文本选择 //disableSelection(document.getElementById("mydiv") )) //禁用 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")disableSelection(somediv) //禁用 id="mydiv" 的 DIV 中的文本选择 </script> </正文> </html>