How to append data to div using JavaScript?

前端 未结 11 1971
忘了有多久
忘了有多久 2020-11-22 09:39

I\'m using AJAX to append data to div element, where I fill the div from JavaScript, how can I append new data to the div without losing the previous data found in div?

11条回答
  •  旧巷少年郎
    2020-11-22 10:05

    Why not just use setAttribute ?

    thisDiv.setAttribute('attrName','data you wish to append');
    

    Then you can get this data by :

    thisDiv.attrName;
    

提交回复
热议问题