我在下面的jquery中使用此代码: -
<input type="hidden" value="<?php echo $get_result['pid'] ;?>" name="get_id[]" id="get_id" />
var values = $("input[name='get_id[]']").map(function(){
return $(this).val();
}).get();
但是,当我使用$.post
发送此数据时,会显示array
类型错误。有人可以帮帮我吗如何通过$ .post将这些数据正确发送到PHP页面?
var url = "<?php echo "result.php"; ?>";
$.post(url, { sql_id: values }, function(data) {
$('#output').html(data);
});
});