如何使用jquery click事件将变量推送到php数组中

时间:2016-10-23 08:55:15

标签: php jquery arrays

按钮:

<button id="animals" type="button" value="push" >Push</button>

我有一个php数组:

$animalArray = array($dog, $cat, $horse, $lamb, $fox);

这是jquery:

$(document).ready(function() {
    $("#animals").click(function(){
        // here comes the array push something like this
        array_push($animalArray, $lion);
    }); 
});

我知道'array_push($ animalArray,$ lion);' php代码,无法在jquery代码中运行。我已经尝试过存储数组的会话,但对我来说没有用。我感谢每一个帮助。感谢。

1 个答案:

答案 0 :(得分:2)

您必须使用PHP(处理数组内容)编写服务器端脚本,然后通过Ajax从您的jQuery代码(在客户端)调用。无法在客户端和服务器端的单个脚本中执行此操作。