0
返回我怎樣才能在功能1字符串值函數2返回,即我如何能在功能1獲得字符串的值在函數2
function fnc1(){
var text = fnc2("Pencils");
alert(text);
}
function fnc2(mytext){
$.post("process.php", {t:mytext}, function(data){
return data;
});
}
在process.php
<?php
echo $_POST['t'];
?>
它返回undefined 。
非常感謝你搖滾! –