editor.md Bootstrap3的modal兼容性问题

n8ghc7c1  于 2022-10-23  发布在  Bootstrap
关注(0)|答案(2)|浏览(135)

作者你好,Bootstrap3的modal配合editor.md使用时出现变形:

求解问题如何解决使用的是最新版本。

kg7wmglp

kg7wmglp1#

请问解决了吗?我也遇到了

6ss1mwsb

6ss1mwsb2#

试试在modal初始化后调用 editor.md方法

$('#modal-add').on('shown.bs.modal', function () {
            editormd("editormd", {
                height: 260,
                // width: "100%",
                path: '/static/common/plugins/EditorMD/lib/',
                htmlDecode : "style,script,iframe|on*",
                imageUpload : true,
                imageFormats : ["jpg", "jpeg", "gif", "png", "bmp"],
                imageUploadURL : "url"
                // saveHTMLToTextarea : true
            });
        });

相关问题