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

116
Vistas
Why does it not show the added list-item? something is wrong with the single quotation marks

Why are the quotation marks not working orderly? I always get dashed lines if i use them.

<script>
  function addtodo(){

    todolist.innerHTML =  '
    <li class="mdl-list__item">
      <span class="mdl-list__item-primary-content">
      Bryan Cranston
      </span>
    </li>
    '
    ;
    
  }
</script>
about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

As Dan Zuzevich suggests in the comments, you need to use a back tick (i.e., `) and not single quotes. This is because multi-line strings in JS (you might see the term 'template literals') in JS need to be wrapped in backticks. If your string was single line, you could use regular quotation marks. You could also use the backslash character (i.e., \) to do this, as shown here.

<script>
  function addtodo(){

    todolist.innerHTML =  `
    <li class="mdl-list__item">
      <span class="mdl-list__item-primary-content">
      Bryan Cranston
      </span>
    </li>
    `
    ;
    
  }
</script>
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