selection
A Selection object represents the range of text selected by the user or the current position of the caret. To obtain a Selection object for examination or manipulation, call window.getSelection().
在浏览器中选中一段文本, 调用 window.getSelection(),就会获得一个selection对象
selection对象属性
1 | { |
selection对象方法
getRangeAt
返回选区包含的指定区域(Range)的引用。
1 | // Range就是选区 |
collapse
将当前的选区折叠为一个点。
extend
将选区的焦点移动到一个特定的位置。
modify
修改当前的选区。
collapseToStart
将当前的选区折叠到起始点。
collapseToEnd
将当前的选区折叠到最末尾的一个点。