我想將java腳本變量中的數據發送到server.the變量是在單擊web站點上的按鈕時執行的方法。用該方法編寫的用於發送數據的代碼。如何使用xmlhttprequest對象的post方法發送數據
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("POST","new_map.php",true);
xmlhttp.send(cur_entry_string);
這裏是代碼寫在new_map.php文件獲取data.here cur_entry_string是持有該數據的變量。
$ massage = $ _POST [cur_entry_string];
但這不是工作..:(...我使用的Eclipse
關於此鏈接的信息不多 – Ibu
閱讀網頁的其餘部分,並按照左側的鏈接 – Armand
http://meta.stackoverflow.com/問題/ 280478 /爲什麼 - 不W3Schools的-COM –