通过ajax帖子发送一组值

2022-01-06 00:00:00 jquery php 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来提交这个.

I want to use ajax post to submit this.

$.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 发送放映时间 ID.

I want to know how I send showtime ids using ajax post.

推荐答案

您可以使用

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

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

Which will give you all inputs with showtime name in format you can send by ajax...

检查jsfiddle...

Check on jsfiddle...

演示

相关文章