gpt4 book ai didi

javascript - 使用 Javascript 更改所选文本的 CSS

转载 作者:可可西里 更新时间:2023-11-01 02:15:14 27 4
gpt4 key购买 nike

我正在尝试制作一个 JavaScript 小书签,它将充当荧光笔,在按下小书签时将网页上选定文本的背景更改为黄色。

我使用下面的代码来获取选定的文本,它工作正常,返回正确的字符串

function getSelText() {
var SelText = '';
if (window.getSelection) {
SelText = window.getSelection();
} else if (document.getSelection) {
SelText = document.getSelection();
} else if (document.selection) {
SelText = document.selection.createRange().text;
}
return SelText;
}

但是,当我创建一个类似的函数来使用 jQuery 更改所选文本的 CSS 时,它不起作用:

function highlightSelText() {
var SelText;
if (window.getSelection) {
SelText = window.getSelection();
} else if (document.getSelection) {
SelText = document.getSelection();
} else if (document.selection) {
SelText = document.selection.createRange().text;
}
$(SelText).css({'background-color' : 'yellow', 'font-weight' : 'bolder'});
}

有什么想法吗?

最佳答案

执行此操作的最简单方法是使用 execCommand(),它具有在所有现代浏览器中更改背景颜色的命令。

以下内容应该对任何选择执行您想要的操作,包括跨越多个元素的选择。在非 IE 浏览器中,它会打开 designMode,应用背景色,然后再次关闭 designMode

更新

已在 IE 9 中修复。

function makeEditableAndHighlight(colour) {
var range, sel = window.getSelection();
if (sel.rangeCount && sel.getRangeAt) {
range = sel.getRangeAt(0);
}
document.designMode = "on";
if (range) {
sel.removeAllRanges();
sel.addRange(range);
}
// Use HiliteColor since some browsers apply BackColor to the whole block
if (!document.execCommand("HiliteColor", false, colour)) {
document.execCommand("BackColor", false, colour);
}
document.designMode = "off";
}

function highlight(colour) {
var range, sel;
if (window.getSelection) {
// IE9 and non-IE
try {
if (!document.execCommand("BackColor", false, colour)) {
makeEditableAndHighlight(colour);
}
} catch (ex) {
makeEditableAndHighlight(colour)
}
} else if (document.selection && document.selection.createRange) {
// IE <= 8 case
range = document.selection.createRange();
range.execCommand("BackColor", false, colour);
}
}

关于javascript - 使用 Javascript 更改所选文本的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3223682/

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