gpt4 book ai didi

javascript - 当上面的 Div 已填充时移动 Div

转载 作者:太空宇宙 更新时间:2023-11-04 15:39:19 26 4
gpt4 key购买 nike

我有 2 个相对位置的 div带有按钮的用户首先填充 Div(innerHTML)我希望第二个 Div 在第一个 Div 填充时向下移动

显示以下链接 Demo

最佳答案

像这样? jsFiddle

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type='button' value='Add' onclick='AddEl()' />
<div style='position:relative;background-color:Red'>
01
<div id='Content' style='position:relative;background-color:Green'>
</div>
</div>
<div style='position:relative;background-color:Blue'>
Hagh
<div>
<script>
function AddEl()
{
document.getElementById('Content').innerHTML='Ya';
}
</script>

</body>
</html>

您在 <div> 中嵌套错误

关于javascript - 当上面的 Div 已填充时移动 Div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12350648/

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