gpt4 book ai didi

javascript - 动态突出显示(更改背景)/网页中的内容

转载 作者:太空宇宙 更新时间:2023-11-04 16:22:38 25 4
gpt4 key购买 nike

有什么方法可以在选择特定文本的同时动态更改网页中文本的 background-color

例如:

html 页面中的示例文本显示。我想在使用鼠标指针进行选择时突出显示该页面中的特定文本

我的基础工作:

为特定选定的文本添加类“CSS 样式”。但是如何动态地从网页中获取选定的文本。

最佳答案

您可以使用 CSS 选择器 ::selection 动态设置所选文本的样式。

#content::selection {
background-color: plum;
color: white;
}
#content::-moz-selection {
background-color: plum;
color: white;
}
<div id="content">Sample text display in the html page. I want to high light the particular text in that page, while selecting from mouse pointer.</div>

关于javascript - 动态突出显示(更改背景)/网页中的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28043984/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com