我有一个表单,用户可以在其中动态添加行。在每一行中都有一个产品下拉菜单,应该使用与所选产品相关的价格自动填充文本字段。这适用于第一行,但在动态添加的行中不起作用。产品名称仍然从mysql数据库中提取到下拉列表中,但在选择时不会自动填充文本字段。任何帮助,将不胜感激!
编辑:我添加了以下部分,我认为这将使整个事情工作,我只需要弄清楚如何将i变量附加到名称或id或类,然后我可以自动填充代码包括price [i]和product [i] ...以及我认为这将使其适用于每个动态添加的行。现在有什么想法吗?for(var i=0;i<$('.orderform tr').length;i++)
{
}
结束编辑
自动填充代码:
<script>
$(function() {
$('select[name="product[]"]').change(function()
{
$('#price').val($('select[name="product[]"] option:selected').data('price'));
});
});
</script>
添加行代码:
<script>
$(document).ready(function(){
//This line clones the row inside the '.row' class and transforms it to plain html.
var clonedRow = $('.row').clone().html();
//This line wraps the clonedRow and wraps it <tr> tags since cloning ignores those tags
var appendRow = '<tr class = "row">' + clonedRow + '</tr>';
$('#btnAddMore').click(function(){
//this line get's the last row and appends the appendRow when it finds the correct row.
$('.orderForm tr:last').after(appendRow);
for(var i=0;i<$('.orderform tr').length;i++)
{
}
});
</script>
HTML / PHP:
<table class="orderForm" id="orderForm" width="100%">
<tr class="row">
<td>
<div class="pure-control-group">
<label>Product or Service</label><select name="product[]" id="product">
<option value=""></option>
<?php while($productRow = mysql_fetch_assoc($productResult)){?>
<option value="<?php echo $productRow['prouct_id'];?>" data-price="$<?php echo $productRow['price']; ?>"><?php echo $productRow['product']; ?></option>
<?php } ?>
</select>
</div>
<div class="pure-control-group">
<label>Price</label><input type="text" id="price" name="price[]">
</div>
<input type="button" class="deleteThisRow" id="deleteThisRow" value="Delete"/>
</td>
</tr>
</table>
<input type="button" id="btnAddMore" value="Add Product or Service" class="pure-button"/>
答案 0 :(得分:0)
.clone()
不会克隆事件处理程序。您可以使用.clone(true).appendTo(".orderForm");
。 .clone()
函数的 true 参数也会复制值和事件。