脚本。我想将数据发送到php页面:
<script type="text/javascript">
$(document).ready(function() {
$('#example').dataTable({
"bProcessing": true,
"type": "POST",
"sAjaxSource": "abcd.php",
"data": [
{ game:"Football" },
{ game:"Baseball" }
],
"aoColumns": [
{ mData: 'name' } ,
{ mData: 'count' }
]
});
});
</script>
abcd.php(数据未到达php页面):
<?php
$game=$_POST['game'];
?>
答案 0 :(得分:0)
使game:
参数的值成为您想要的所有游戏的数组。
"data": { games: ["Football", "Baseball"] },
然后在abcd.php
中,您可以执行以下操作:
$games = $_POST['games'];
这将是一个数组,您可以在其上循环以处理所有要求的游戏。