我想为页面上的每个图像创建一个评论表单。图像的数量是动态的。jquery 有没有办法针对单击的提交按钮定位表单数据?
我目前有:
$('.comment_button').click(function() {
var comment = $('input#comment').val();
var id = $('input#id').val();
var other = $('input#other').val();
var dataString = 'comment='+ comment + '&id=' + id + '&other=' + other;
alert (dataString);
});
这意味着每个图像的所有表单字段和表单名称都是相同的(可能应该使它们具有唯一性以进行验证),但是无论用户单击该特定表单中的某个提交按钮时是否有办法获取表单字段?