我有一个表单,它为列表中的每个对象添加一个隐藏字段,然后在下一页上用 foreach 拾取它。一切正常。
我的问题是我需要在该列表中添加另一个变量。到目前为止,这是日期/时间。如何让同一个 foreach 获取另一个值?
谢谢
表格:
<form action="test.php" id="calendarform" method="post">
<input type="submit" value="Export Calendar"/>
</form>
jQuery:
$('#calendarform').submit(function(e) {
var form = $(this);
var listItems = $('.listItem');
listItems.each(function(index){ //For each event do this:
var listItem = $(this);
$("<input type='hidden'/>").val(listItem.text()).appendTo(form).attr('name', 'listItem[' + index + ']');
});
在响应页面上:
foreach($_POST['listItem'] as $key => $value){
$eventDate = trim($value);
}
最后我希望它如何工作:
foreach($_POST['listItem'] as $key => $value){
$eventDate = trim($value);
$eventTitle = trim($value2);
}