我有多個輸入表單。一旦我把價值,我應該能夠通過它的jQuery Ajax。它正在處理簡單的html表單。但是就多維形式而言,我失敗了。如何在jQuery ajax中傳遞多個輸入表單的值?
請幫我在jQuery中獲得價值。
我有HTML表單
<form action="index.php" method="POST">
<?php
for($a=0; $a<5; $a++) {
echo "<input type='text' name='IdentityID[]' placeholder='GB' onchange=\"getdetail(IdentityID[id]); return false;\"/>";
}
?>
</form>
JQuery的AJAX
function getdetail(IdentityID) {
alert(IdentityID); //I wan the value to appear here
$.ajax ({
type: "POST",
url: "getdetail.php",
data: { IdentityID: IdentityID},
success: function(data) {
$("#detail").html(data);
}
});
return false;
}
ReferenceError: IdentityID is not defined
'onchange'='getdetail(IdentityID [id])'定義了哪個ID? – guest271314
即使我使用了*** getdetail(IdentityID [$ a])***我得到控制檯*** ReferenceError:IdentityID未定義*** – tapaljor
嘗試將'this.value'替換爲'IdentityID [id]' – guest271314