My code
var care = MediumEditor.selection.getSelectionStart(editor.options.ownerDocument);
care.after("<b>hi</b>");
return
<b>hi</b>
you need
hi
My code
var care = MediumEditor.selection.getSelectionStart(editor.options.ownerDocument);
care.after("<b>hi</b>");
return
<b>hi</b>
you need
hi
该after()
函数返回一个字符串,其中<
和>
表示为<
和>
。一种简单的解决方案是用它们各自的符号替换这些字符串,如下所示:
var after = '<b>hi</b>';
var html = after
.replace(/</g, '<')
.replace(/>/g, '>');
document.write(html);
我正在使用字符串的 replace() 方法和正则表达式。
从docs中,使用editor.pasteHtml('<b>hi</b>');
这会将 html 代码粘贴到光标或选择处。