取消选择 HTML 页面上文本的 JavaScript 代码。
以下是取消选择 HTML 页面上文本的代码 −
示例
<!DOCTYPE html>
<htmllang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.result {
font-size: 20px;
font-weight: 500;
color: rebeccapurple;
}
</style>
</head>
<body>
<h1>De-select text on HTML page</h1>
<div style="color: green;" class="result">
Here is some text inside the div
</div>
<button class="Btn">CLICK HERE</button>
<h3>Click on the above button to deselect everything on this page</h3>
<script>
let resEle = document.querySelector(".result");
document.querySelector(".Btn").addEventListener("click", () => {
window.getSelection().removeAllRanges();
});
</script>
</body>
</html>输出
上述代码将产生以下输出 −

选中页面上的文本 −

单击“单击此处”按钮 −

广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP