javascript - Restrict paste in contenteditable (HTMLJS) - Stack Overflow

I would like to prevent the user from pasting non allowed markup in a contenteditable div.I would like

I would like to prevent the user from pasting non allowed markup in a contenteditable div.

I would like to restrict paste to bold, italic, strike, underline and links.

What is the best way (I'm using jQuery) ?

This is not a duplicate of JQuery Text Editor Paste Without Formatting. I don't want to paste without formatting. I want to select / restrict to some markups.

I already read the following questions, none provides a clear answer:

  • JQuery Text Editor Paste Without Formatting
  • How to filter user pasted content in contenteditable div?
  • Javascript trick for 'paste as plain text` in execCommand
  • Contenteditable allowing only plain text

I would like to prevent the user from pasting non allowed markup in a contenteditable div.

I would like to restrict paste to bold, italic, strike, underline and links.

What is the best way (I'm using jQuery) ?

This is not a duplicate of JQuery Text Editor Paste Without Formatting. I don't want to paste without formatting. I want to select / restrict to some markups.

I already read the following questions, none provides a clear answer:

  • JQuery Text Editor Paste Without Formatting
  • How to filter user pasted content in contenteditable div?
  • Javascript trick for 'paste as plain text` in execCommand
  • Contenteditable allowing only plain text
Share Improve this question edited Feb 13, 2019 at 22:13 Andy Hoffman 19.1k5 gold badges48 silver badges66 bronze badges asked Nov 7, 2018 at 9:13 FifiFifi 3,6153 gold badges31 silver badges62 bronze badges 3
  • Possible duplicate of JQuery Text Editor Paste Without Formatting – prasanth Commented Nov 7, 2018 at 9:18
  • stackoverflow./questions/31822471/… – Al.UrBasebelon Tomeh Commented Nov 7, 2018 at 9:19
  • 1 This is not a duplicate of JQuery Text Editor Paste Without Formatting. Restrict paste is not the same as paste without formating – Fifi Commented Nov 7, 2018 at 9:24
Add a ment  | 

1 Answer 1

Reset to default 15

Restrict pasted content by listening to the editable element's paste event. Inside this event, you can filter the data the user is attempting to paste by using a regular expression.

const el = document.querySelector('p');

el.addEventListener('paste', (e) => {
  // Get user's pasted data
  let data = e.clipboardData.getData('text/html') ||
      e.clipboardData.getData('text/plain');
  
  // Filter out everything except simple text and allowable HTML elements
  let regex = /<(?!(\/\s*)?(a|b|i|em|s|strong|u)[>,\s])([^>])*>/g;
  data = data.replace(regex, '');
  
  // Insert the filtered content
  document.execCommand('insertHTML', false, data);

  // Prevent the standard paste behavior
  e.preventDefault();
});
<p contenteditable>Try pasting content into this paragraph. The pasted content can include a <b>BOLD</b>, <i>ITALIC</i>, <s>STRIKE</s>, or <u>UNDERLINE</u>. It can also include a <a href='#'>LINK</a>.</p>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743662207a4486385.html

相关推荐

  • javascript - Restrict paste in contenteditable (HTMLJS) - Stack Overflow

    I would like to prevent the user from pasting non allowed markup in a contenteditable div.I would like

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信