我像这里使用的那样使用WMD编辑器。
我有一个自定义上传功能,可以通过弹出窗口来完成,并自动处理markdown的插入,例如wmd编辑器根本不需要处理它。
我已经使用了docs中的示例中所述的编辑器挂钩,但是仍然无法弄清楚如何禁用/删除默认显示的提示背景...(此处使用的相同背景/覆盖您单击图像按钮等)
这是我的代码:
// initialize the editor
var editor1 = new Markdown.Editor(converter1, "", options);
//customize upload button on button bar... remove default functionality, activate popup on click
editor1.hooks.set("insertImageDialog", function (callback) {
var a = $('#wmd-button-bar').data('stgt');
popup('/inc_upload.asp?t=' + a, 'Upload a File', 350, 500);
return true; // tell the editor that we'll take care of getting the image url
});
editor1.run();
最佳答案
想通了,我只需要一个空回调。
// initialize the editor
var editor1 = new Markdown.Editor(converter1, "", options);
//customize upload button on button bar... remove default functionality, activate popup on click
editor1.hooks.set("insertImageDialog", function (callback) {
var a = $('#wmd-button-bar').data('stgt');
popup('/inc_upload.asp?t=' + a, 'Upload a File', 350, 500);
callback(null);
return true; // tell the editor that we'll take care of getting the image url
});
editor1.run();
关于javascript - 从默认设置定制WMD编辑器按钮-无法摆脱wmd-prompt-background,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37449505/