我有许多通过 jQuery 动态添加的文本框。他们都有相同的名字,比如......
<input type="text" name="employer" id="employer" />
<input type="text" name="position" id="position" />
<input type="text" name="city" id="city" />
<input type="text" name="employer" id="employer" />
<input type="text" name="position" id="position" />
<input type="text" name="city" id="city" />
so many...
我通过 AJAX 传递所有文本框值,但它不起作用。我的 AJAX 代码如下..
AJAX
$.ajax(
{
type: "POST",
url: $("#cfgRoot").val()+'/accounts/educationInfoPost.php',
data:
{
employer:$("#employer").val().trim(),
position:$("#position").val().trim(),
city:$("#city").val().trim()
}
});
提前致谢