我试图在单击按钮时附加输入标签并成功。我参考了很多链接
但现在的问题是我在表单中使用这些输入标签,并试图使用表单操作将这些输入标签值发送到下一页。但我无法发送附加的输入元素值。
**
jQuery
$("#addshowtime").click(function(){
$("<input type='time' value='' />")
.attr("id", "showtime5")
.attr("name", "show_timing5")
.prependTo("#showtime");
});
**
html
<label><strong>Show Timing1</strong></label><input id="showtime1" type="time" name="show_timing1" required/>
<label><strong>Show Timing2</strong></label><input id="showtime2" type="time" name="show_timing2" required/>
<label><strong>Show Timing3</strong></label><input id="showtime3" type="time" name="show_timing3" required/>
<label><strong>Show Timing4</strong></label><input id="showtime4" type="time" name="show_timing4" required/>
<cfinput type="button" id="addshowtime" class="btn" onClick="addInput()" name="add" value="+" />
<cfinput type="button" class="btn1" onClick="subInput()" name="sub" value="RESET" />
<p id="showtime">
</p>