我想發送一個在jQuery中生成的數組到一個PHP文件。我被卡住了。我嘗試了幾種方法,但沒有運氣。我想在php文件中echo/print_r數組。專家給我你的好看。如何打印或獲取從jQuery發送到PHP文件的數組Wordpress
JS:我下面的代碼給出
<script>
jQuery(document).ready(function($){
url = '<?php echo includes_url().'cs_cause.php'; ?>';
var allVals = [];
$('#deleteProduct').click(function(){
$('.delete-product:checked').each(function() {
allVals.push($(this).val());
});
$.post(url,{ array : allVals }, function(response,status){
alert(response+ ' ' + status);
});
})
})
</script>
PHP:
<?php
if($_POST['array'])
{
$r = $_POST["array"];
print_r($r);
}
?>
,所以我怎麼能得到陣列? – WahidSherief 2015-03-03 06:27:22
最近怎麼迴應?使用'console.log(響應)' – Ghost 2015-03-03 06:29:33
請看看:http://screencast.com/t/shpt3IpLOI2 @Ghost – WahidSherief 2015-03-03 06:34:00