innerHTML with For Loop in Javascript

后端 未结 2 1243
遇见更好的自我
遇见更好的自我 2021-01-03 06:44

this is my coding. in this coding i want to print table in innerHTML in

paragraph tag.This is working but the problem is when i click submit button this result show only

相关标签:
2条回答
  • 2021-01-03 07:10

    Your for loop is overwriting the innerHTML of demop each time it is executing. So when your for loop reaches last iteration a will be 10 and hence you only get the last value "10*10=100"

    So you should append the result every time you iterate your for loop just make it like this

    demop.innerHTML += (value + "*" + a + "=" + (value*a) + "<br />");

    So you will get your output on seperate lines.

    0 讨论(0)
  • 2021-01-03 07:12

    When you call demop.innerHTML = something you overwrite it each time. You should either:

    • Put the entire string in a temporary result variable and then give it to innerHTML
    • Concatenate the different results by doing

      demop.innerHTML = demop.innerHTML + (value+"*"+ a +"="+ value*a);

    0 讨论(0)
提交回复
热议问题