How can I get the text that is going to be pasted in my html text editor?

前端 未结 2 1687
时光取名叫无心
时光取名叫无心 2021-01-14 00:59

I have a small text editor in my home page ( a textarea ) where I can paste text. How can I get this text in a variable before it would be pasted? I know that there is this

2条回答
  •  抹茶落季
    2021-01-14 01:37

    The short answer is that in general you can't get the text before it is pasted. What you can do is what big web-based WYSIWYG editors such as CKEditor and TinyMCE do, which is:

    1. Detect a Ctrl-v / shift-ins event using a keypress event handler
    2. In that handler, save the current user selection, add a
      element off-screen (say at left -1000px) to the document, move the caret to be inside that div, thus effectively redirecting the paste
    3. Set a very brief timer (say 1 millisecond) in the event handler to call another function that retrieves the HTML content from the div and does whatever processing is required, removes the div from the document, restores the user selection and inserts the processed HTML.

    Note that this will only work for keyboard paste events and not pastes from the context or edit menus. By the time the paste event fires, it's too late to redirect the caret into the div (in some browsers, at least).

提交回复
热议问题