gpt4 book ai didi

javascript - 在开头添加动态按钮

转载 作者:行者123 更新时间:2023-11-30 12:20:30 25 4
gpt4 key购买 nike

我在 DIV 中添加了几个按钮。

var newVr = "";
for(i=0; i<5; i++){
newVr += '<button type="button" class="abc">New</button>';
}
document.getElementById('extraDIV')innerHTML += newVr;

如何在开头添加新按钮,而不是将按钮添加到按钮的末尾?

添加新按钮后的预期输出,例如

[新][新][旧][旧][旧][旧][旧][旧]

最佳答案

您可以使用 prepend()

for(i=0; i<5; i++){
$('#extreDIV').prepend('<button type="button" class="abc">New</button>');
}

for (i = 0; i < 5; i++) {
$('#extreDIV').prepend('<button type="button" class="abc">New</button>');
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<div id="extreDIV">
<button type="button" class="abc">Old</button>
<button type="button" class="abc">Old</button>
<button type="button" class="abc">Old</button>
</div>

关于javascript - 在开头添加动态按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31267706/

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