Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

124
Views
¿Cómo eliminar automáticamente las etiquetas <p> </p> en angular?

Estoy usando la entrada del editor p en el tema primeng . He intentado muchas veces eliminar las etiquetas <p></p> en javascript. Pero no funciona,

probé todos los códigos javascript. pero no obtuve la solución, cómo eliminar automáticamente las etiquetas <p></p> en angular.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Puede acceder al texto usando la propiedad innerText de nativeElement .

Tomando la sugerencia de ViewChild del comentario de @Aldin_Bradaric, creó una demostración funcional a continuación:

Demostración de stackblitz

 <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 }}

componente.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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!