我正在使用以下代码(网页中的 Javascript)在 DOM 中动态创建一个“新”元素。我希望将这个说 200px 放在现有元素的“下方”。但是,我的输出中新元素的定位全都错误......好像我指定的位置(顶部,左侧)被忽略了。
var _reference = document.getElementById("outputs");
for (_count = 0; _count < _limits; _count++) {
var _structure = document.createElement("div");
_structure.setAttribute("class", "container-fluid");
_structure.setAttribute("id", "struct_" + _tally);
if (_count === 0){
_rect = _reference.getBoundingClientRect();
//get the bounding box of the "outputs" id element...
document.getElementById("outputs").appendChild(_structure);
_structure.style.top = _rect.top + "200px"; //NOT positioned 200px below 'outputs'
_structure.style.left = _rect.left; //NOT positioned same position as 'outputs'
} //_count is "0"
} //for loop
我本以为这应该是相当简单的……但是它让我发疯了……任何帮助表示赞赏。
慕尼黑8549860
慕桂英3389331
相关分类