How to make an HTML
element editable cross-browser?

前端 未结 4 646
独厮守ぢ
独厮守ぢ 2020-11-30 20:04

Do you know how to make a

editable with JavaScript? I\'m looking for cross-browser solution.

Something similar to a rich text area, but that

4条回答
  •  失恋的感觉
    2020-11-30 20:51

    Set contentEditable property of the element to "true":

    element.contentEditable = "true";
    

    See also:

    • Content Editable MDN docs
    • Browser support on caniuse.com

提交回复
热议问题