Remove formatting from a contentEditable div

前端 未结 8 796
醉话见心
醉话见心 2020-12-25 11:40

I have a contentEditable Div and I want remove any formatting especially for copy and paste text.

8条回答
  •  离开以前
    2020-12-25 12:00

    With Jquery you can use .text() method, so, when blur for example you can replace the content with the text content

    $("#element").blur(function(e) {
        $(this).html($(this).text());
    });
    

提交回复
热议问题