我想动态地将 div 元素添加到我的页面中。搜索包括 Stackoverflow 在内的内容为我提供了以下示例代码:
var main = document.getElementById('MasterContainer'); //manually defined div with this id
var div = document.createElement('div');
div.setAttribute("id","container1");
main.appendChild(div);
注意:它在 document.ready 函数中。
并且结果不包含 container1 div。