我的代码有问题:
jQuery
var data = $('thisForm').serialize();
var msg = <?php echo computeAverage(data)?>;
alert(msg);
php
function computeAverage($data){
return $data;
}
我得到“数据”(字符串)作为输出,而不是数据的实际值。顺便说一句,我只使用了一个 php 文件,其中包含上面的 jquery 和 php 函数。
您的帮助将不胜感激。我真的需要弄清楚这一点。我是 jquery 的新手。
谢谢您的回复。鉴于我需要将我的 php 函数放到一个单独的文件中
jQuery
var url = "myPhpFunction.php";
var data = $('thisForm').serialize();
$post(url,data, function(response)); // how can i get the reponse from my url?
php
function computeAverage($data){ // how to convert $data to an array?
return average; // how can i return the average back to my jquery?
}
谁能帮我?谢谢