如何从 Decode Html 更改为 text normal

How to change from Decode Html to text normal

我在文本区域中更改了要解码的值。我想从值 Decode Html 更改为文本正常。我该怎么做?

        $("#editor").kendoTextArea({
            change: function (e) {
                var value = this.value();
                var decoded = $("textarea").html(value).text();
                $("#9").text(decoded);
            }
        });

结果示例:sadsadasdas< /strong>。 我想要:sadsadasdas< /strong> =to=>sadsadasdas(普通文本)

这里有一个 kendoTextArea 示例,供您将 HTML 更改为文本。在 DOJO 中试试这个。 HTML 两秒后变为文本。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>Kendo UI Snippet</title>

    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2021.1.330/styles/kendo.default-v2.min.css"/>

    <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2021.1.330/js/kendo.all.min.js"></script>
</head>
<body>
  
<textarea id="description" style="width: 100%;"></textarea>

<script>
    $(document).ready(function(){
        var textArea = $("#description").kendoTextArea({
            value: "<b>Bold text</b>",
            rows:5,
            change: function(e) {
                var value = e.sender.value();
                e.sender.value($(value).text());
            },
        }).data("kendoTextArea");

        setTimeout(function() {
            textArea.trigger("change");
        }, 2000);
    });
</script>
</body>
</html>