|
|
|
ปัญหาเกี่ยวกับ Ajax กับ Firefox ครับ ซึ่งพอรันด้วย IE แล้วทำงานปกติ |
|
|
|
|
|
|
|
ผมทำการแก้ไขโค้ดยังเป็นเหมือนเดิมครับ IE ทำงานได้ปก แต่ FireFox รันไม่ออกครับ
Code (PHP)
<script>
function ajaxSubmit() {
xmlHttp = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
xmlHttp = new XMLHttpRequest();
if (xmlHttp.overrideMimeType) {
xmlHttp.overrideMimeType('text/html');
}
}
else if(window.ActiveXObject){
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else{
alert("Browser Error");
return false;
}
var URL = "forgot_pswd_result.php";
var data = "email=" + encodeURI(document.getElementById("email").value) ;
xmlHttp.open("POST",URL, true);
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlHttp.send(data);//alert(data);
xmlHttp.onreadystatechange = function(){
if(xmlHttp.readyState == 3)
{
document.getElementById("msg").innerHTML = "Now loadding...";
}
if(xmlHttp.readyState == 4 && xmlHttp.status == 200 )
{
document.getElementById("msg").innerHTML = xmlHttp.responseText;
}
}
}
</script>
|
|
|
|
|
Date :
2010-10-27 08:03:05 |
By :
tummavong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|