我已经找到了这个表单所需的大部分内容(使字段动态化等),但是现在这个数组部分似乎无法正确提交。
我想要完成的事情:一个带有选择字段的表单,可以动态复制,然后作为表单的一部分提交到它自己的表中。因此,如果我们在一个表单中添加并选择三个人,它会将外键提交给它自己的出席表,并返回表单所针对的事件。必须让它充满活力,因为我们永远无法确定有多少人会参加所说的活动,但它必须以一种形式发生。只是因为它确实如此。我的老板是这样说的。
这是我添加另一个字段按钮的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 id value of the input inside the new element
newElem.children(':first').attr('id', 'attendee' + newNum).attr('name', 'attendee[' + newNum + ']');
// insert the new element after the last "duplicatable" input field
$('#input' + num).after(newElem);
// enable the "remove" button
$('#btnDel').attr('disabled','');
// business rule: you can only add 5 names
if (newNum == 6)
$('#btnAdd').attr('disabled','disabled');
});
以下是该字段以以下形式开始的内容:
<div id="input1" style="margin-bottom:4px;" class="clonedInput">
<select name="attendee[1]" id="attendee1" style='float:right;margin-right:4.5%;'>
<option value=''>Please choose one...</option>
<?php
while($row_attendees = mysql_fetch_assoc($res_attendees)){
$attendee_id = $row_attendees['attendee_id'];
$attendee_name = $row_attendees['name'];
echo "<option value='".$attendee_id."'>".$attendee_name." </option>";
}
?>
</select><label style='width:100px;display:inline-block;line-height:28px;' for="attendee">Attendee</label>
</div>
我正在正确更改所有内容。所有选择输入都被正确识别和命名。div 正在更新相同。所有这些都正常工作。什么不是我去提交的时候。这是我的php:
foreach($_POST['attendee'] as $attendee){
$sql_attendees = "INSERT into marketing_calendar.attending (event_title, attendee_id) VALUES ('".$_POST['title']."','".$attendee."')";
$res_attendees = mysql_query($sql_attendees) or die(mysql_error());
}
我用来把它放在一起的所有教程都表明这是正确的。但是它不起作用。我只得到第一个下拉列表的内容,没有其他内容填充到数组中。如果我运行表单或在 foreach 语句中回显参加者变量,至少这就是它显示/提交的全部内容。请帮忙!:)
提前致谢。
更新 我已经尝试过与另一个用户讨论的几种方法来显示 $_POST['attendee'] 的数组,但是它仍然只显示数组中的 1 个 id,而不是我实际添加的许多字段。我还尝试从选择的名称属性中的数组中删除数字。所以它只是 name='attendee[]' 而不是 name='attendee[1]' 等等。这也无济于事。有人可以帮忙解释为什么我的动态添加的字段没有被添加到数组中吗?