語法:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5">
<title>取消選取</title>
<style>
body
{
-moz-user-select:none;
}
</style>
</head>
<body onselectstart="return false">
在 <body> 加入 onselectstart="return false"<br>
可以讓 IE ...無法選取文字<hr>
在網頁內加入<br>
<style><br>
body<br>
{ <br>
-moz-user-select:none;<br>
}<br>
</style><br>
可以讓 FireFox 無法取選文字</p>
</body>
</html>