gpt4 book ai didi

javascript - 更改动态添加元素的位置

转载 作者:太空宇宙 更新时间:2023-11-04 13:38:37 24 4
gpt4 key购买 nike

我正在尝试更改动态添加元素的位置和样式,但我的更改没有生效。有什么想法吗?

感谢您的帮助。

function addButtons()
{
var button1 = document.createElement('button');

button1.innerHTML = 'Relevant';

button1.onclick = function()
{
alert('test');
return false;
};


document.getElementsByClassName('subject')[0].appendChild(button1).style.left="6000px";


};

最佳答案

如果元素没有position: absoluteposition: fixedposition: relative,作为内联样式或继承自样式表,left 没有任何效果

关于javascript - 更改动态添加元素的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22851318/

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