-
禁止出现右键菜单:
绑定contextmenu事件 + 禁止默认行为e.preventDefault(); -
禁止鼠标选中文字:
绑定selectstart事件 + 禁止默认行为e.preventDefault();
代码示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>禁止选中文字</title>
</head>
<body>
我是一段不想被选中的文字
<script>
// 1.禁止出现右键菜单
document.addEventListener('contextmenu', function(e) {
e.preventDefault();
});
// 2.禁止选中文字
document.addEventListener('selectstart', function(e) {
e.preventDefault();
});
</script>
</body>
</html>