用了rails后,好久沒有用xmlHttpRequest對象了,因為rails把xmlHttpRequest給封裝了,rails自帶了很多ajax方法,今天用了下xmlhttprequest,還真遇到不少麻煩
測試通過:
opera 9.6 + IE 6.0 + FF 3 + chrome 2
html:
<span id="valstatus"></span> <td><input name="loginname" type="text" id="ctl00_main_content_txtLogin" class="textbox" onfocus="checkLogin(this);" onkeyup="checkLogin(this);" style="width:120px;" /></td>
javascript:
function createXmlHttpRequest(){ //創建對象 try{ xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); }catch(e){ try{ xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); }catch(e2){ xmlHttp = false; } } if(!xmlHttp && typeof XMLHttpRequest != "undefined") { xmlHttp = new XMLHttpRequest(); } } function checkLogin(node){ // html中觸發的js函數 var loginname = document.getElementById('ctl00_main_content_txtLogin').value; createXmlHttpRequest(); xmlHttp.open("Get","/home/response_validate?login="+loginname+"&ts="+new Date().toString(),true); xmlHttp.send(null); xmlHttp.onreadystatechange = processor; //注意這里processor不能有括號 } function processor(){ //回調函數 if(xmlHttp.readyState == 4 || xmlHttp.readyState == 'complete'){ //注意S要大寫 if (xmlHttp.status == 200){ var responsetext = xmlHttp.responseText; if((responsetext.toString()) == "true"){ loginError = document.getElementById("valstatus").innerHTML = '該登錄名已經被使用'; }else{ alert("測試"); } } } }
服務器端:
def response_validate @login_name = params[:login] @value = true render :partial=>'response_validate' end
partial:
<%= @value %>
總結:
1,rails中服務器返回text數據,通過render的方式,不想java中是通過 out.println 返回的
2,xmlHttp.onreadystatechange = processor;這里的processor后不能有(),不知道為什么,不然只能返回到1
3,readyState 的s必須大寫,不然在opera和ff中會有bug的
4,數據改變為string,js是通過toString()方法,例如 responsetext.toString()
5,為了防止緩存問題可以再發送請求的時候加個隨機的數據,例如上面的 xmlHttp.open("Get","/home/response_validate?login="+loginname+"&ts="+new Date().toString(),true);
ref:
http://www.cnblogs.com/chy710/archive/2007/04/15/713868.html
http://bbs.blueidea.com/thread-2764862-1-1.html
http://topic.csdn.net/u/20081007/08/d48c3061-760f-4831-9187-540b0be5eb31.html
http://www.tctl.com.cn/accp/1472/1473/50006.html
write by feng |