我正在为我的项目使用 angularjs,我想创建一个文本输入,该输入具有允许突出显示文本的某些部分并插入链接(超链接)的功能,就像富文本编辑器一样
我知道一个富文本编辑器,它是文本角度的,但我的项目只需要插入一些文本的超链接而不向用户显示 HTML 标记
现在我正在使用没有任何 html 功能的常规文本区域
<textarea
ng-model="ctrl.sms_instance_template.body"
ng-model-options="{ debounce: 500 }"
class="form-control recipe-input"
ng-class="{'input-error':ctrl.errors.conversation}"
ng-change="ctrl.smsMessageTypeChange(ctrl.sms_instance_template)"
placeholder="Please enter an introductory message..."
required>
</textarea>
下面是我打算创建的设计。有人有什么主意吗 ?
