JS内如何加入HTML代码,转义符还是什么

内容哪里想加入一些html元素,尝试直接输入没用,不懂转义符


        <link rel="stylesheet" href="https://www.jq22.com/demo/jquerydialog201811220905/easyhelper.min.css">
        <script src="https://www.jq22.com/demo/jquerydialog201811220905/jquery.transit.min.js"></script>
        <script src="https://www.jq22.com/demo/jquerydialog201811220905/easyhelper.min.js"></script>
        <div class="wrapper">
            <button class="helper-button-info" id="dialog-4">暗黑模式对话框</button>
        </div>
        <script>
            $( '#dialog-4' ).on('click', function () {
                Helper.ui.dialog({
                    title: '发表简说',
                    content:'我是内容',
                            yesText: '我要确定',
                            noText: '我要取消',
                    darkMode: true    ,
                    yesCallback: function () {
                        alert( '确定' );
                    },
                    noCallback: function () {
                        alert( '取消' );
                    }
                });
            })
        </script>

想把content:'我是内容',
里面能插入html 比如说


<input type="text" placeholder="内容">
<textarea></textarea>

原生的js方法innerHtml