用 CSS 設定元素的文字是否可以選擇
使用 CSS user-select 屬性來設定元素的文字是否可以用 CSS 選擇
示例
<!DOCTYPE html> <html> <head> <style> div { user-select: none; } </style> </head> <body> <h2>This is demo heading</h2> <div>This is demo text. You won't be able to select it.</div> </body> </html>
廣告