在多行数据中使用jquery插件发送多条消息?

时间:2009-10-16 07:51:18

标签: php jquery mysql

我使用jquery.form发送一个表单,但在下面的情况下如何使用这个jquery插件

$('#htmlForm').ajaxForm({ 
    target: '#htmlExampleTarget', 
    success: function() { 
        $('#htmlExampleTarget').fadeIn('slow');
        $('#htmlForm').hide();
    } 
});

for($ i = 1; $ i< = 10; $ i ++){

//表格$ 1

form name =“form $ i”action =“blabla.php”

input type =“text”name =“name $ i”/>

input type =“text”name =“name $ i”/>

input type =“submit”name =“submit”/

}

1 个答案:

答案 0 :(得分:0)

使用class而不是id并遍历表单。对于目标,请使用#htmlExampleTarget1。

之类的ID
var i = 1;
$('.htmlForm').each(function () {
   var object = $(this);
   object.ajaxForm({
      target: '#htmlExampleTarget' + i, 
      success: function() { 
         $('#htmlExampleTarget' + i).fadeIn('slow');
         object.hide();
       }
   });
   i++;
});