Clear a selection in Firefox

前端 未结 3 464
北荒
北荒 2020-12-03 21:16

I have this function

function smth() {
var container = null;
var newContainer = null;
if (window.getSelection) {  // all browsers, except IE before versi         


        
3条回答
  •  我在风中等你
    2020-12-03 21:32

    For the problematic browser:

    document.selection.empty()
    

    For other browsers:

    window.getSelection().removeAllRanges()
    

    See http://help.dottoro.com/ljigixkc.php

提交回复
热议问题