在Primeng的p编辑器中,要在特定位置显示光标,可以通过以下步骤实现:
<p-editor [(ngModel)]="editorContent"></p-editor>
editorContent: string;
import { Component, ViewChild, AfterViewInit } from '@angular/core';
export class YourComponent implements AfterViewInit {
@ViewChild('editor') editor;
ngAfterViewInit() {
// 在这里设置光标位置
this.editor.quill.setSelection(10); // 设置光标位置为第10个字符处
}
}
<p-editor #editor [(ngModel)]="editorContent"></p-editor>
通过以上步骤,你就可以在Primeng的p编辑器中的特定位置显示光标了。请注意,这里的示例代码仅供参考,具体实现可能会根据你的项目结构和需求有所不同。
领取专属 10元无门槛券
手把手带您无忧上云