我正在使用自定义文本格式化程序组件。我使用下面的代码来实现其他功能(粗体,斜体,缩进等),但我没有在这里找到减少缩进。
document.execCommand(aCommandName, aShowDefaultUI, aValueArgument)
我该如何实现?
答案 0 :(得分:2)
有用于标签的缩进和outdent execCommand函数。像这样:
缩进 - doc.execCommand('indent', true, null);
Outdent - doc.execCommand('outdent', true, null);