通过ajax发布发送值数组 [英] send an array of values through a ajax post

查看:83
本文介绍了通过ajax发布发送值数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

请考虑以下代码,

<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发布来提交此内容.

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帖子发送表演时间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...

演示

这篇关于通过ajax发布发送值数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆