2
て値の配列を送信する私はこれを提出するAJAXポストを使用したいは、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>
、次のコードを考えてみてください。
$.post('index.php',{
'option':'com_movies',
'controller':'movie',
'task' : 'savedata',
'format':'raw',
'mid':$('#movie_id').val()
},function(result){
if(result)
alert(result);
return;
});
私はshowtime idをajax投稿を使用して送信する方法を知りたいと思います。
ありがとうございます。 – Sara