如何将iframe的get/convert格式化成html纯文本?

How to get/convert formatted html of iframe into plain text?

我创建了一个 iframe,我可以在其中 post 格式化文本(例如来自 Word 文档)并将其接收为 html。是否也可以接收未格式化的版本(没有 html 标签),例如在将格式化文本复制到文本区域时创建的?

我用于记录格式化文本 html 的代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>

    <script>
        window.addEventListener("load", function () {
            var editor = theWYSIWYG.document;
            editor.designMode = 'on';
            action.addEventListener('click', function() {
                var formattedHTML = editor.body.innerHTML
                console.log(formattedHTML);
            }, false)
        }, false)
    </script>
</head>
<body>
    <div id="textEditor">
        <button id="action" title="Bold"><b>Click me</b></button>
        <div id="richTextArea"></div>
            <iframe id="theWYSIWYG" name="theWYSIWYG" frameborder="0"></iframe>
    </div>
</body>
</html>

从技术上讲,我可以要求用户也将格式化文本粘贴到单独的文本框,但我更愿意一次性完成。

提前致谢

试试这个 var text = editor.body.innerText || editor.body.textContent;

取自这个答案