ภาษาไทย
<html> <title>downcodes.com</title> <head> <script type="text/javascript"> ฟังก์ชั่นdisableSelection(target){ if (typeof target.onselectstart!="unknown") //IE เป้าหมายเส้นทาง onselectstart=function(){return false} else if (typeof target.style.MozUserSelect!="unknown") //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="พื้นหลัง:#f1f1f1;border:1px #000 dotted">这里เพิ่มเติม</div> <script type="text/javascript"> var somediv=document.getElementById("test") DisableSelection(somediv) //disable text select ภายใน DIV ด้วย id="mydiv" </script> </ เนื้อความ> </html>