我有一个包含多个元素的 html 表单。现在,我特别希望您注意的是两个下拉框,旁边还有一个“添加”按钮。所以,一旦用户从下拉列表中进行选择并按下“添加”按钮,它就会将数据添加到表格中并该表将显示在这些下拉框的正下方。因此,基本上用户可以通过下拉列表添加多个数据并在表中查看它。现在,当我想在提交表单时从该表中检索数据时,就会出现问题。我不确定 $_PHP[''] 是否能够从我创建的表中获取数据。
因此,作为替代方案,我尝试在提交表单时使用 AJAX 传递数据!
HTML:
<form name="input" id="formToSubmit" action="process-host.php" method="post" enctype="multipart/form-data">
/* Form data goes here*/
<input type="button" class="submit" value="Submit Request" onclick="valField(this.form); "/>
valField() 方法验证并提交表单。
JS:
function valField(form) //field validation for the form before submit
{
/*Validation code goes here*/
//if(validated){
$("#formToSubmit").submit(function(e) { //this.submit(function(e)){
e.preventDefault();
var tableForNew = new Array(); //to store the infoDisplayTable data
$('#infoDisplayTable1l tr').each(function() {
tableForNew.push($(this).find("td:first").html());
tableForNew.push($(this).find("td:second").html());
});
// Get all INPUT form data and organize as array
var formData = $(this).serializeArray();
// Encode with JSON
var tableForNew1 = JSON.stringify(tableForNew);
// Add to formData array
formData.push({name: 'tableForNew', value: tableForNew1});
// Submit with AJAX
$.ajax({
url: "./process-host.php",
data: formData,
type: 'post',
success: function() {
alert("BOOM! IT WORKED;");
}
});
});
在服务器端,在process-host.php中,
$tableForNew = json_decode($_POST['tableForNew']);
这显然行不通,所以当我使用 Firebug 进行调试时,我可以看到它没有进入提交函数。它只是提交表单,而不经过内部代码!这就是为什么它没有将任何表数据发布到服务器并给出错误通知Undefined index: tableForNew的原因。
那么,我该怎么做才能让它发挥作用呢?有什么建议么?