javascript – Selection.addRange()已弃用,将从Chrome中删除

我最近在chrome的控制台日志中注意到以下消息,同时使用aloha editor

aloha.js:14579 – The behavior that Selection.addRange() merges existing Range and the specified Range is deprecated and will be removed in M58, around April 2017. See 07001 for more details.

在尝试寻找替代品时,除了他们要删除它之外我找不到任何东西,所以我想知道Selection.addRange()的替代方法是什么来摆脱这个消息.

解决方法:

诀窍是在使用addRange(范围)添加新范围之前,在选择中使用removeAllRanges().以下是使用它来选择elem的所有内容的示例:

selection = window.getSelection();    // Save the selection.
range = document.createRange();
range.selectNodeContents(elem);
selection.removeAllRanges();          // Remove all ranges from the selection.
selection.addRange(range);            // Add the new range.
上一篇:BZOJ3262:陌上花开 & 洛谷3810:三维偏序——题解


下一篇:php – 不推荐使用:函数eregi_replace()[复制]