我有一个由成对的文本字段组成的表单。用户可以根据需要创建任意数量的配对并填写字段。字段行被添加到表的底部。以下是格式示例:
<form id="dataForm">
<table id="textTable">
<tbody>
<tr>
<td><h2>Dancer</h2></td>
<td><h2>Place</h2></td>
</tr>
<tr>
<td><input type="text" name="Dancer0" size="15" id="Dancer0"></td>
<td><input type="text" name="Place0" size="15" id="Place0"></td>
</tr>
<tr>
<td><input type="text" name="Dancer1" size="15" id="Dancer1"></td>
<td><input type="text" name="Place1" size="15" id="Place1"></td>
</tr>
</tbody>
</table>
<input type="button" id="newRow" value="New Row" accesskey="/" onclick="moreFields();">
<input type="button" value="Update" name="Submit" onclick="submitForm(this.form);">
</form>
我遇到的麻烦是让表单使用 ajax 正确提交到外部 php 页面。这是我现在正在使用的功能:
function submitForm(form)
{
jQuery.ajax({
type: "POST",
url: <?php echo '"'.dirname(curPageURL()).'/ResultsUpdater.php"' ?>,
data: form.serialize(),
success: function(msg){
alert(msg);
}
});
return false;
}
在其他示例中,我看到他们使用 $ 来表示 jQuery,它会放在“form”之前:但是我$(form).serialize()
的$.ajax({...
服务器不喜欢$
. 我也试过jQuery.form.serialize()
了,但这也不起作用。我在控制台中得到的错误总是沿着"TypeError: 'undefined' is not an object (evaluating 'jQuery.form.serialize')"
如果我可以将一堆键值对提交给 php 文件(据我所知,serialize() 就是这样做的),那就太好了。
您可以在这里试用表格
只需选择其中一项即可查看表单。
谢谢