出色地,
我一直试图解决这个问题已经有一段时间了,但绝对没有运气。
现在,我有一个带有 jQuery 的 HTML 表单,可以动态添加或删除费用。然后将此信息放入 php 数组并存储到数据库中。
我想要的是能够从数据库中提取该数组,对条目进行计数,并将它们放入 HTML 表单上正确数量的输入框中。我仍然希望在这里使用 jQuery,因为我希望用户能够在这个“编辑”阶段添加或删除费用。
如果感到困惑,请提出问题。
jQuery v
<script type="text/javascript">
$(document).ready(function() {
$('#btnAdd').click(function() {
var num = $('.clonedInput').length; // how many "duplicatable" input fields we currently have
var newNum = new Number(num + 1); // the numeric ID of the new input field being added
// create the new element via clone(), and manipulate it's ID using newNum value
var newElem = $('#input' + num).clone().attr('id', 'input' + newNum);
// manipulate the name/id values of the input inside the new element
newElem.children(':first').attr('id', 'name' + newNum)
// insert the new element after the last "duplicatable" input field
$('#input' + num).after(newElem);
$('input[name="name[]"]:last').val(null);
// enable the "remove" button
$('#btnDel').attr('disabled','');
});
$('#btnDel').click(function() {
var num = $('.clonedInput').length; // how many "duplicatable" input fields we currently have
$('#input' + num).remove(); // remove the last element
// enable the "add" button
$('#btnAdd').attr('disabled','');
// if only one element remains, disable the "remove" button
if (num-1 == 1)
$('#btnDel').attr('disabled','disabled');
});
$('#btnDel').attr('disabled','disabled');
});
</script>
HTML v
<tr id="input1" style="margin-bottom:4px;" class="clonedInput">
<td><span style="color:#00CD00;">Charge:</span></td>
<td><input type="text" name="name[]" size="35"/></td>
</tr>
<tr>
<td><input type="button" id="btnAdd" value="Add Another Charge" /></td>
<td><input type="button" id="btnDel" value="Remove Charge" /></td>
</tr>
另外,如果您看到我可以在我的代码中使用的任何改进,请提出建议。我对使用 jQuery 相当陌生,我想尽可能多地学习。