Is there a way to add information to a DOM object with .innerHTML without replacing what exists there?
For example: document.getElementById('div').innerHTML = 'stuff';
Would return <div id="div">stuff</div>
And then a similar call: document.getElementById('div').innerHTML = ' and things';
Would set the div to <div id="div">stuff and things</div>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…