ボタンをクリックしてフィールドを追加できるフォームを作成しました。ボタンをクリックするたびに、新しいフィールドが作成され、その後ろに大きな数字が表示されます。私はjqueryでこれを行い、phpで最大数を取得する必要があります. したがって、auto_part1 と auto_part2 がある場合、PHP で 2 を取得する必要があります。
これは私のhtmlです:
<div id="parts">
Part
<input type="text" id="auto_part" name="auto_part" />
<br />
Description
<input type="text" id="auto_description" name="auto_description" />
<br />
</div>
<a href="#" id="addField">Add another part</a>
jQuery 関数:
$(function() {
var scntDiv = $('#parts');
var i = $('#parts input').size() + -1;
$('#addField').on('click', function() {
$('<br /><span>Part</span> <input type="text" id="auto_part'+i+'" name="auto_part'+i+'" /><br />').appendTo(scntDiv);
$('<span>Description</span> <input type="text" id="auto_description'+i+'" name="auto_description'+i+'" /> <br />').appendTo(scntDiv);
i++;
return false;
});
$('#remScnt').on('click', function() {
if( i > 2 ) {
$(this).parents('p').remove();
i--;
}
return false;
});
});