如何在HTML JavaScript自定义文本格式化程序中实现减少缩进?

时间:2016-10-14 12:37:29

标签: javascript html angular execcommand

我正在使用自定义文本格式化程序组件。我使用下面的代码来实现其他功能(粗体,斜体,缩进等),但我没有在这里找到减少缩进。

document.execCommand(aCommandName, aShowDefaultUI, aValueArgument)

我该如何实现?

1 个答案:

答案 0 :(得分:2)

有用于标签的缩进和outdent execCommand函数。像这样:

缩进 - doc.execCommand('indent', true, null);

Outdent - doc.execCommand('outdent', true, null);