0

我想在 textAngular WYSIWYG 编辑器中添加一个新行。

我正在使用\n,但它不起作用

<text-angular ng-model="htmlContent" name="demo-editor" placeholder="sample text \n testttt"></text-angular>

在此处输入图像描述

或者

<text-angular ng-model="htmlContent" name="demo-editor" placeholder="sample text <br/> testttt"></text-angular>

在此处输入图像描述

4

1 回答 1

0

首先,您必须将此 html 类添加到您的 css

.placeholder-text::before {
  white-space: pre;
}

然后你可以用'\a'设置文本。

<text-angular ng-model="htmlContent" name="demo-editor" placeholder="sample text \a testttt"></text-angular>

在此处输入图像描述

于 2016-08-16T20:26:35.767 回答