Why doesn't the document.execCommand work when I click on a div?

前端 未结 3 610
小鲜肉
小鲜肉 2020-12-16 04:19

Both the button and the div have the same \'onclick\' code, yet the execCommand only seems to work on the button. Is there any way I can make it work when pressing the div?<

3条回答
  •  一整个雨季
    2020-12-16 05:00

    For Firefox, it's necessary to set contenteditable = true before execCommand.

    For IE it is not necessary.

提交回复
热议问题