我有一个脚本可以更改已选择的文本的背景颜色。但是,当跨多个元素/标签选择文本时,我遇到了问题。
我得到的代码是:
var text = window.getSelection().getRangeAt(0);
var colour = document.createElement("hlight");
colour.style.backgroundColor = "Yellow";
text.surroundContents(colour);
输出的错误是:
Error: The boundary-points of a range does not meet specific requirements. =
NS_ERROR_DOM_RANGE_BAD_BOUNDARYPOINTS_ERR
Line: 7
我相信这与getRange()函数有关,虽然我不太清楚如何继续,因为我是javascript的初学者。
还有其他方法可以复制我想要实现的目标吗?
非常感谢。
答案 0 :(得分:13)
今天有人提出这个问题:How can I highlight the text of the DOM Range object?
这是我的答案:
以下应该做你想要的。在非IE浏览器中,它打开designMode,应用背景颜色,然后再次关闭designMode。
<强>更新强>
已修复在IE 9中工作。
function makeEditableAndHighlight(colour) {
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);
}
}
答案 1 :(得分:2)
我认为在这种情况下使用mark.js库非常棒。该库的目的是突出显示HTML文档中某个单词的所有实例,但可以通过过滤器选项功能进行调整,并且可以通过每个>添加其他跨度属性strong>选项功能。
function markFunc(node, text, color) {
var instance = new Mark(node);
instance.mark(text, {
"element": "span",
"className": color,
"acrossElements": true,
"separateWordSearch": false,
"accuracy": "partially",
"diacritics": true,
"ignoreJoiners": true,
"each": function(element) {
element.setAttribute("id", "sohayb");
element.setAttribute("title", "sohayb_title");
},
"done":function(totalMarks) {
window.getSelection().empty();//This only in Chrome
console.log("total marks: " + totalMarks);
},
"filter": function(node, term, totalCounter, counter) {
var res = false;
if (counter == 0) {
res = selectionRange.isPointInRange(node, selectionRange.startOffset);
} else {
res = selectionRange.isPointInRange(node, 1);
}
console.log("Counter: " + counter + ", startOffset: " + selectionRange.startOffset);
return res;
}
});
};
检查此JSFiddle sample以查看突出显示用户选择的已完成代码,即使是跨多个HTML元素也是如此。