P粉3453027532023-08-16 09:31:48
This can be easily achieved by using 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>