我使用鼠标在 html 页面(在 firefox 中打开)上选择一些文本,并使用 javascript 函数,我创建/获取与所选文本相对应的范围对象。
userSelection =window.getSelection();
var rangeObject = getRangeObject(userSelection);
现在我想突出显示范围对象下的所有文本。我是这样做的,
var span = document.createElement("span");
rangeObject.surroundContents(span);
span.style.backgroundColor = "yellow";
嗯,这很好用,只有当范围对象(起点和终点)位于同一个文本节点时,它才会突出显示相应的文本。Ex
<p>In this case,the text selected will be highlighted properly,
because the selected text lies under a single textnode</p>
但是如果范围对象覆盖多个文本节点,那么它就不能正常工作,它只突出显示位于第一个文本节点中的文本,例如
<p><h3>In this case</h3>, only the text inside the header(h3)
will be highlighted, not any text outside the header</p>
知道如何制作范围对象下的所有文本,突出显示,独立于范围是位于单个节点还是多个节点?谢谢....