查询:
$('#partsOrderQty').blur(function(){
var rowCounter = $(this).val();
console.log(rowCounter);
var toAddRow = $("#skidListings").children().clone();
for (var i=0; i<rowCounter; i++) {
$("#skidListings").append(toAddRow);
console.log("Ran Once Just Now");
}
});
html:
<div id="skidListings">
<input class="ConfirmQty" name="ConfirmQty" type="text" value="<?php echo $confirm;?>"/>
<input class="ConfirmDesc" name="ConfirmDesc" type="text" value="<?php echo $des[$final]; ?>"/>
<input class="ConfirmWeight" name="ConfirmWeight" type="text" value="<?php echo $ShipWeight[$final]*$confirm; ?>" />
<input class="ConfirmClass" name="ConfirmClass" type="text" value="<?php echo $class[$final]; ?>"/>
<input class="ConfirmNMFC" name="ConfirmNMFC" type="text" value="<?php echo $NMFC[$final]; ?>"/>
<input class="ConfirmLength" name="ConfirmLength" type="text" value="<?php echo $length[$final]; ?>"/>
<input class="ConfirmWidth" name="ConfirmWidth" type="text" value="<?php echo $width[$final]; ?>" />
<input class="ConfirmHeight" name="ConfirmHeight" type="text" value="<?php echo $height[$final]; ?>" /><br />
</div>
为什么即使它打印控制台消息的次数正确,它也只克隆一次?我必须清除这些值吗?该功能是允许我手动指定与从我们的数据库中提取的数量不同的件数。我知道我不能克隆带有 ID 的东西,但我为孩子们选择了,他们都没有 ID。我需要保留课程,我应该删除名称吗?这有关系吗?
编辑:根据请求http://jsfiddle.net/NxSwA/