将HTML转换为contentEditable中的纯文本

时间:2013-02-28 00:21:22

标签: javascript jquery html text contenteditable

我有contentEditable并通过捕获事件来删除粘贴内容on('paste')的格式。然后我关注textarea,将内容粘贴到那里,然后复制值。几乎是here的答案。问题是我不能这样做:

$("#paste-output").text($("#area").val());

因为这会用粘贴的文本替换我的整个内容。所以我需要将内容粘贴到插入位置。我整理了一个脚本:

pasteHtmlAtCaret($("#area").val());

// pastes CTRL+V content at caret position
function pasteHtmlAtCaret(html) {
  var sel, range;
  if (window.getSelection) {
    sel = window.getSelection();
    if (sel.getRangeAt && sel.rangeCount) {
      range = sel.getRangeAt(0);
      range.deleteContents();
      var el = document.createElement("div");
      el.innerHTML = html;
      var frag = document.createDocumentFragment(), node, lastNode;
      while ((node = el.firstChild)) {
        lastNode = frag.appendChild(node);
      }
      range.insertNode(frag);

      if (lastNode) {
        range = range.cloneRange();
        range.setStartAfter(lastNode);
        range.collapse(true);
        sel.removeAllRanges();
        sel.addRange(range);
      }
    }
  } else if (document.selection && document.selection.type != "Control") {
    document.selection.createRange().pasteHTML(html);
  }
}

唯一的问题是它使用html变量在插入位置粘贴HTML内容。我怎样才能将其转换为纯文本?我试着将jQuery .text(html)添加到变量中而没有运气。这样的事情可能会有所帮助:

el.textContent||el.innerText;

任何想法或更好的解决方案?谢谢!


修改 感谢下面的答案,我修改了我的代码并解决了问题。我基本上将textarea的值复制到div并仅抓取其.text()

// on paste, strip clipboard from HTML tags if any
$('#post_title, #post_content').on("paste", function() {
    var text = $('<div>').html($("#area").val()).text();
    pasteHtmlAtCaret(text);
  }, 20);
});

4 个答案:

答案 0 :(得分:10)

  1. 创建外部div
  2. 将你的html放在那个div中,
  3. 复制该div中的文字
  4. 将其插入光标位置。

答案 1 :(得分:3)

根据Jonathan Hobbs的要求,我发布了这个答案。 感谢上面的答案我修改了我的代码并解决了问题。我基本上将textarea的值复制到div中,只抓取它的.text():

// on paste, strip clipboard from HTML tags if any
$('#post_title, #post_content').on("paste", function() {
  setTimeout(function(){
    var text = $('<div>').html($("#area").val()).text();
    pasteHtmlAtCaret(text);
  }, 20);
});

答案 2 :(得分:2)

替换标签解决方案:

http://jsfiddle.net/tomwan/cbp1u2cx/1/

var $plainText = $("#plainText");
var $linkOnly = $("#linkOnly");
var $html = $("#html");

$plainText.on('paste', function (e) {
    window.setTimeout(function () {
        $plainText.html(removeAllTags(replaceStyleAttr($plainText.html())));
    }, 0);
});

$linkOnly.on('paste', function (e) {
    window.setTimeout(function () {
        $linkOnly.html(removeTagsExcludeA(replaceStyleAttr($linkOnly.html())));
    }, 0);
});

function replaceStyleAttr (str) {
    return str.replace(/(<[\w\W]*?)(style)([\w\W]*?>)/g, function (a, b, c, d) {
        return b + 'style_replace' + d;
    });
}

function removeTagsExcludeA (str) {
    return str.replace(/<\/?((?!a)(\w+))\s*[\w\W]*?>/g, '');
}

function removeAllTags (str) {
    return str.replace(/<\/?(\w+)\s*[\w\W]*?>/g, '');
}

答案 3 :(得分:1)

我使用的解决方案是将元素的innerText设置为blur:

$element.on('blur', () => this.innerText = this.innerText);

这会保留空白,但会删除格式。它也可以在你的场景中使用。