亲爱的stackoverflowers,
我有一个关于获取特定字段的 id 和 value 的问题。现在,我有以下代码:
<div class="category_edit_form">
<input type = "text" name = "category_edit_text" class = "category_edit_text" id = "'.$category->category_id.'">
<input type = "button" class="category_edit_button" value = "Wijzig">
</div>
这是 foreach 循环的输出。因此,显示的每个类别都包含一个文本字段和一个用于更改名称的按钮。这是我的 jQuery:
jQuery(".category_edit_button").click( function() {
jQuery.ajax({
async: false,
url: nieuwsbrief.updatecategory,
type: 'POST',
data: { category_id: jQuery('.category_edit_text').prop('id'), category_name: jQuery('.category_edit_text').val()},
success: function(data) {
alert(data);
}
});
});
这是要提醒的数据:
echo $_POST['category_id']."en de naam is: ".$_POST['category_name'];
但是每次当我点击任何按钮时,我只看到第一个字段的值和 id。因此,当我单击第二个文本字段的按钮时,会弹出第一个字段的 id 和值,而不是第二个文本字段的 id 和值。
我怎么解决这个问题?