How To Replace < with> with > using jquery

前端 未结 10 778
鱼传尺愫
鱼传尺愫 2020-12-13 20:14

I have a page that is part of a backend CRM admin panel. On that page the HTML output comes from some PHP functions that I can\'t access. And that HTML automatically changes

10条回答
  •  自闭症患者
    2020-12-13 21:09

    You can do it simply with php

    <strong>Valuación</strong> de InfoAuto: 35.500,00<br /> 
    Cotización Seleccionada: Ninguna<br /> 
    Allianz, Responsabilidad Civil: $205,25<br /> 
    Allianz, Terceros Completos: $278,85 
    '; $b = html_entity_decode($a); echo $b; ?>

提交回复
热议问题