Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

120
Vistas
How to remove automatically bind <p> </p> tags in angular?

I am using the p-editor input in primeng theme. i have tried many times to removed the <p></p> tags in javascript.but not working,

i tried all javascript codes. but i didn't get the solution,how to remove automatically bind the <p></p> tags in angular.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You can access the text by using the innerText property of nativeElement.

Taking the ViewChild hint from @Aldin_Bradaric's comment, created a working demo below:

Stackblitz demo

<h5>Default</h5>
<p-editor #editor [(ngModel)]="text" [style]="{'height':'320px'}" (ngModelChange)="cleanString()"></p-editor>

<!-- for demo purpose -->
<p></p>
<div>Written text:</div>
{{ cleanText }}

component.ts:

import { Component, ViewChild } from '@angular/core';

export class AppComponent {
  text: string = '';
  cleanText = '';

  @ViewChild('editor', {static: false}) editor: any;

  cleanString() {
    this.cleanText = this.editor.el.nativeElement.innerText;
  }
}
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda