如何使用execCommand对齐文本

时间:2016-08-02 02:21:40

标签: javascript

当我想将所选文本设为粗体时,我应该使用以下代码:

edit.document.execCommand("bold", false, "");

但是如何使用execCommand使文本的右对齐,左对齐或居中对齐?

1 个答案:

答案 0 :(得分:1)

execCommand不能用于对齐页面上的元素。 但是你可以看看像这样的命令 证明或缩进是否符合您的目的

edit.document.execCommand("JustifyRight", false, "");

https://developer.mozilla.org/en/docs/Web/API/Document/execCommand http://codepen.io/netsi1964/full/QbLLGW/