gpt4 book ai didi

javascript - 动态表单附加字段

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

我一直在使用下面的 js fiddle 来做我需要的事情,但是我只需要给每个添加一个新的 id.. 有没有人有任何想法或指示?

谢谢。

http://jsfiddle.net/nj4N4/7/

<span>Width: <input type="text" style="width:48px;" name="width[]" value="" /><small>(ft)</small> X </span>

最佳答案

去控制台查看每个width的id

var room = 1;
function add_fields() {
room++;
var objTo = document.getElementById('room_fileds')
var divtest = document.createElement("div");
divtest.innerHTML = '<div class="label">Room ' + room +':</div><div class="content"><span>Width: <input type="text" style="width:48px;" name="width[ id='+ room +']" value="" /><small>(ft)</small> X</span><span>Length: <input type="text" style="width:48px;" namae="length[]" value="" /><small>(ft)</small></span></div>';

objTo.appendChild(divtest)
}
div { padding:10px;}
<input type="button" id="more_fields" onclick="add_fields();" value="Add More" />

<div id="room_fileds">
<div>
<div class='label'>Room 1:</div>
<div class="content">
<span>Width: <input type="text" style="width:48px;" name="width[id=1]" value="" /><small>(ft)</small> X </span>
<span>Length: <input type="text" style="width:48px;" namae="length[]" value="" /><small>(ft)</small></span>
</div>
</div>
</div>

关于javascript - 动态表单附加字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43737282/

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