「jQuery入門」配列をpostパラメータで引き渡すサンプルコード
JSコード
$.ajax({
type: “POST",
url:"modifyId.php",
data:{ids : modifyIds},
traditional: true,
dataType:"json",
success: function(data){
alert(data);
}
});
var modifyIds = new Array();
Coding Changes the World
JSコード
$.ajax({
type: “POST",
url:"modifyId.php",
data:{ids : modifyIds},
traditional: true,
dataType:"json",
success: function(data){
alert(data);
}
});
var modifyIds = new Array();