从contenteditable中删除自定义标记

时间:2018-01-23 03:57:57

标签: javascript html css

我有这个插入自定义标记的脚本。



<input type="button" value="my tag" onclick="document.execCommand('insertHTML', false, '<mytag>'+window.getSelection()+'</mytag>');" />
<main contenteditable="true">Sample text</main>
&#13;
&#13;
&#13;

它很棒。但是如果所选文本已经有了标签,我需要按钮来删除标签,因此它更像是一个切换操作。有什么建议吗?

0 个答案:

没有答案