Javascript array and innerHTML - Stack Overflow

I'm just started with JavaScript and I have a little problem.How do I use the innerHTML propriety

I'm just started with JavaScript and I have a little problem.

How do I use the innerHTML propriety to change the text in this element:

(function showArray(){
  var names = new Array("Bob ","Alice ","Ceaser ","David");
  names.sort();

  for (var i = 0; i < names.length; i++) {
    document.getElementById("loop").innerHTML = names[i];
    // I'm only getting "David" as output!!
  }
})();
<p id="loop">David Alice Bob Ceaser</p>

I'm just started with JavaScript and I have a little problem.

How do I use the innerHTML propriety to change the text in this element:

(function showArray(){
  var names = new Array("Bob ","Alice ","Ceaser ","David");
  names.sort();

  for (var i = 0; i < names.length; i++) {
    document.getElementById("loop").innerHTML = names[i];
    // I'm only getting "David" as output!!
  }
})();
<p id="loop">David Alice Bob Ceaser</p>

Share Improve this question edited Oct 11, 2014 at 16:08 Oriol 289k71 gold badges457 silver badges530 bronze badges asked Oct 11, 2014 at 16:02 SpoofySpoofy 6514 gold badges10 silver badges27 bronze badges 1
  • 4 Change innerHTML = to innerHTML +=. – user663031 Commented Oct 11, 2014 at 18:21
Add a ment  | 

3 Answers 3

Reset to default 8

Try this, you just need to join the names too.

function showArray() {
  var names = new Array("Bob ", "Alice ", "Ceaser ", "David");
  names.sort();

  document.getElementById("loop").innerHTML = names.join(" ");
}

showArray();
<p id="loop">David Alice Bob Ceaser</p>

Just for the record: your code can be reduced to

 (function() {
   document.querySelector("#loop").innerHTML = 
       ["Bob ", "Alice ", "Ceaser ", "David"].sort().join(" ");
 }())
<p id="loop"></p>

In this case, better use Array.prototype.join as suggested in @DaveChen's answer.

However, you can't always use that. For those cases:

  • DOM operations are slow. Therefore,
    • Don't use getElementById inside a loop. Instead, store the element in a variable before the loop.
    • Don't modify innerHTML at each iteration. Instead, update a string variable and only modify innerHTML after the loop.
  • Creating arrays using [] is faster than with Array constructor, and it's shorter.

However, note that using innerHTML may produce html injection. If you just want to add text, better use textContent instead.

(function showArray(){
  var names = ["Bob ","Alice ","Ceaser ","David"],
      el = document.getElementById("loop"),
      html = '';
  names.sort();
  for (var i = 0; i < names.length; i++) html += names[i];
  el.textContent = html;
})();
<p id="loop">David Alice Bob Ceaser</p>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743588831a4475373.html

相关推荐

  • Javascript array and innerHTML - Stack Overflow

    I'm just started with JavaScript and I have a little problem.How do I use the innerHTML propriety

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信