可能重複:
How to pass JavaScript variables to PHP?
Passing a Javascript string to PHP返回JavaScript函數PHP變量
我有這個JavaScript的PHP文件中的代碼:
<script>
function(){
var mail="[email protected]";
for(var i=0; i<json_load.length; i++){
if(json_load[i].custom.tipologo == "FAAC FILIALI"){
mail=json_load[i].custom.email;
}
}
return mail;
}
</script>
我需要將「郵件」變量返回給PH P變量。我怎樣才能做到這一點??
郵政/ get是trasnmitting數據的標準方法通過http – DavidB
這麼多重複的問題,這是很難知道哪些鏈接到。您需要了解Ajax,以及更一般地瞭解客戶端/服務器環境(如瀏覽器/ Web服務器)中的prorgams如何工作。 – SDC