Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

208
Visualizações
Put JavaScript value inside HTML

How to put JavaScript value inside HTML ?

I am trying to put JavaScript value inside HTML like below.

<p>
    Check your Credit Score <a href="http://someaddress.com?first_name='+ first_name +'" target="_blank">Here</a>
</p>
about 4 years ago · Juan Pablo Isaza
3 Respostas
Responde à pergunta

0

You can do like this

<p>
 Check your Credit Score
<a href="http://someaddress.com?first_name='+ first_name +'" target="_blank"
 >Here</a >
</p>

 <script type="text/javascript">
   const a = document.querySelector('a');

   const first_name = 'John';

   a.href = 'http://someaddress.com?first_name=' + first_name ;
 
 </script>
about 4 years ago · Juan Pablo Isaza Relatório

0

do this if you want to change the link document.querySelector('a').href = "http://someaddress.com?first_name=" + first_name;

about 4 years ago · Juan Pablo Isaza Relatório

0

To achieve the results, you can make use of document.getElementById('').href property:

HTML (added the id attribute to the <a> tag):

<p>
  Check your Credit Score <a id="link" href="" target="_blank">Here</a>
</p>

JavaScript:

window.onload = function() {
    var first_name = 'Peter';
  document.getElementById('link').href = 'http://someaddress.com?first_name='+ first_name;
  
  // debug your results
  console.log(document.getElementById('link').href);
}

Here is the JSFiddle

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda