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()
}
});
前もって感謝します