這可以透過使用CSS輕鬆實現。
body { -webkit-user-select: none; /* Safari */ -ms-user-select: none; /* IE 10 and IE 11 */ user-select: none; /* Standard syntax */ }
<html> <body> <p>尝试选择我</p> </body> </html>
這可以透過使用CSS輕鬆實現。