我有一個Web應用程序,我一直在工作一段時間。我使用AJAX技術使用HTTP POST請求發送數據。使用AJAX的Http POST請求
我使用JavaScript這樣的:
var rdate=document.getElementById('rdate').value;
var Description=document.getElementById('description').value;
var urlstring="rdate="+rdate+"&Description="+Description;
oxhr.open("POST","http://localhost/info/php/store.php",false);
//checking for ready state change here
oxhr.send(urlstring);
但在數據庫中,我看到的一切空白(無數據,但行創建) 不應該urlstring包含變量?或者可能是JavaScript中可能出現的錯誤。
任何幫助,非常感謝。
那麼,*是否*?使用Firebug/Fiddler/IE Developer Tools等工具查看*真正發送的內容。 (我希望從給出的代碼中自己得到一個語法錯誤,但是......) – 2012-06-29 18:15:45
'var urlstring =「admin_id =」rdate =「+ rdate +」&Description =「+說明;'是無效的JavaScript。引號和運算符不夠' – apsillers
我修改了我的問題對不起,該字符串中沒有admin_id –