我有一个网页,顶部有一组按钮。我正在编写一个函数,以便在单击最右侧按钮时将表单放置在最右侧按钮的右侧。我正在使用以下 JavaScript 代码。
var optionsForm = document.createElement("form");
optionsForm.setAttribute('method',"post");
optionsForm.style.display = "inline";
MakeDropDown(optionsForm); // Make drop-down list element
document.getElementsByTagName('body')[0].appendChild(optionsForm);
但是,它将表单/下拉列表放在页面底部,而不是放在顶部按钮的右侧。我宁愿不必使用绝对定位,因为我希望表单位于最右侧按钮的右侧,并且可能有不同数量的按钮。