selection.ts 147 B

12345
  1. // 清除文字选区
  2. export const removeAllRanges = () => {
  3. const selection = window.getSelection()
  4. selection && selection.removeAllRanges()
  5. }