javascript:如何反转range.execCommand方法

如果我使用execCommand方法突出显示所选文本:

document.execCommand("HiliteColor", false, colour);

如建议in this page,然后我想返回并取消突出显示格式(即返回到突出显示某些文本之前的状态),该怎么办?

解决方法:

以下内容将删除格式:

document.execCommand("RemoveFormat", false, null);
上一篇:input 限制输入数字和小数


下一篇:有没有办法确定execCommand(‘undo’)是否可执行? [JavaScript的]