gpt4 book ai didi

javascript - 在 HTML 中选择后保持范围对象的更改

转载 作者:技术小花猫 更新时间:2023-10-29 12:05:31 25 4
gpt4 key购买 nike

有没有办法保存更改,例如更改跨越多个标签的 HTML 文本的背景,以便在再次加载时,所做的更改应反射(reflect)在 HTML 页面中。

编辑:详细解释。

加载 HTML 页面时,使用范围对象和执行命令选择并突出显示文本:

             document.execCommand("BackColor", false, 'yellow');

更改(将文本突出显示为黄色)会一直保留到页面重新加载为止。但是当页面重新加载时,这些更改不存在。我想要的是以某种方式保存这些更改,就像在本地 DB sqlite 中一样,以便在重新加载/刷新页面时,HTML 页面中的更改应该出现。

知道怎么做。我是否需要保存其范围起始偏移量和结束偏移量,以便在下次加载页面时用于创建范围。请给出您的见解。

最佳答案

对于每个选择,您可以将所选范围序列化为字符偏移量,并在重新加载时使用如下方式再次反序列化它:

演示:http://jsfiddle.net/WeWy7/3/

代码:

var saveSelection, restoreSelection;

if (window.getSelection && document.createRange) {
saveSelection = function(containerEl) {
var range = window.getSelection().getRangeAt(0);
var preSelectionRange = range.cloneRange();
preSelectionRange.selectNodeContents(containerEl);
preSelectionRange.setEnd(range.startContainer, range.startOffset);
var start = preSelectionRange.toString().length;

return {
start: start,
end: start + range.toString().length
};
};

restoreSelection = function(containerEl, savedSel) {
var charIndex = 0, range = document.createRange();
range.setStart(containerEl, 0);
range.collapse(true);
var nodeStack = [containerEl], node, foundStart = false, stop = false;

while (!stop && (node = nodeStack.pop())) {
if (node.nodeType == 3) {
var nextCharIndex = charIndex + node.length;
if (!foundStart && savedSel.start >= charIndex && savedSel.start <= nextCharIndex) {
range.setStart(node, savedSel.start - charIndex);
foundStart = true;
}
if (foundStart && savedSel.end >= charIndex && savedSel.end <= nextCharIndex) {
range.setEnd(node, savedSel.end - charIndex);
stop = true;
}
charIndex = nextCharIndex;
} else {
var i = node.childNodes.length;
while (i--) {
nodeStack.push(node.childNodes[i]);
}
}
}

var sel = window.getSelection();
sel.removeAllRanges();
sel.addRange(range);
}
} else if (document.selection) {
saveSelection = function(containerEl) {
var selectedTextRange = document.selection.createRange();
var preSelectionTextRange = document.body.createTextRange();
preSelectionTextRange.moveToElementText(containerEl);
preSelectionTextRange.setEndPoint("EndToStart", selectedTextRange);
var start = preSelectionTextRange.text.length;

return {
start: start,
end: start + selectedTextRange.text.length
}
};

restoreSelection = function(containerEl, savedSel) {
var textRange = document.body.createTextRange();
textRange.moveToElementText(containerEl);
textRange.collapse(true);
textRange.moveEnd("character", savedSel.end);
textRange.moveStart("character", savedSel.start);
textRange.select();
};
}

关于javascript - 在 HTML 中选择后保持范围对象的更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13949059/

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