gpt4 book ai didi

javascript - 尝试使用 JavaScript 定位表单

转载 作者:行者123 更新时间:2023-11-28 20:32:20 24 4
gpt4 key购买 nike

我正在尝试使用 JavaScript 创建表单并定位它。我使用以下代码。

var f = document.createElement("form");
f.setAttribute('method',"post");
f.setAttribute('action',"submit.php");

// Position form
f.setAttribute('offsetTop',offsetTop);
f.setAttribute('offsetLeft',parseInt(offsetLeft)+parseInt(imageWidth));

document.getElementsByTagName('body')[0].appendChild(f);

但是,当我使用 Firebug 检查 DOM 时,表单的位置与我根本没有使用表单定位调用一样。也就是说,它位于最后一个图像元素的下方。

最佳答案

试试这个。

var f = document.createElement("form");
f.setAttribute('method',"post");
f.setAttribute('action',"submit.php");

// Position form
f.style.position = "absolute";
f.style.top = offsetTop +"px";
f.style.left = (parseInt(offsetLeft)+parseInt(imageWidth)) +"px";

关于javascript - 尝试使用 JavaScript 定位表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16111482/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com