gpt4 book ai didi

php - 通过 ajax post 发送一组值

转载 作者:行者123 更新时间:2023-12-01 03:01:16 25 4
gpt4 key购买 nike

请考虑以下代码,

<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来提交这个。

$.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。

最佳答案

您可以使用

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

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

检查 jsfiddle...

Demo

关于php - 通过 ajax post 发送一组值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9018120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com