通过ajax帖子发送一组值

时间:2012-01-26 12:30:28

标签: php jquery joomla

请考虑以下代码,

<form action="index.php" method="post" name="adminForm" enctype="multipart/form-data">        
     <input type="hidden" name="showtime[]" id="showtime_1" value="1" />
     <input type="hidden" name="showtime[]" id="showtime_2" value="2" />
     <input type="hidden" name="showtime[]" id="showtime_3" value="3" />

     <input type="hidden" name="mid" id="movie_id" value="100" />
     .
     .
     .
</form>

我想使用ajax帖子提交此内容。

$.post('index.php',{
                    'option':'com_movies',
                    'controller':'movie',
                    'task' : 'savedata',
                    'format':'raw',            
                    'mid':$('#movie_id').val()           
            },function(result){           
              if(result)                      
                  alert(result);           
                return;
            });

我想知道如何使用ajax post发送showtime id。

1 个答案:

答案 0 :(得分:5)

您可以使用

$('input[name="showtime[]"]').serialize()

这将以ajax发送的格式为您提供showtime名称的所有输入...

检查jsfiddle ......

Demo