`
i_am_birdman
  • 浏览: 282840 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

xmlhttp.status==0

    博客分类:
  • ajax
 
阅读更多
遇到到个xmlhttp.status=0的问题。



后来看了下因为 <input type="submit" onclick="register()" value="完成" />
把submit改掉就ok
分享到:
评论

相关推荐

    ajax经典实例大全1,参看源码附件。。。。。。

    ajax经典实例大全1 &lt;!... &lt;meta charset="utf-8"&gt; ... if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("myDiv").innerHTML=xmlhttp.responseText; } } xmlhttp.open

    Ajax原理分析及其实现的简单代码

    让更多人了解ajax技术.function _open... if(xmlHttp.readyState == 4 && xmlHttp.status == 200) { resultHandle=xmlHttp.responseText; alert('返回结果:'+resultHandle); } };//执行回调函数 }

    用 ajax + asp.net 采集文章

    用 ajax + asp.net 采集文章 试验型的项目。 原先用多线程来采集,但是觉得多线程采集要显示采集进度... if (this.XmlHttp.status == 200) { this.ProcessDataEvent(); } } } function processData() { } }

    WEB开发 之 AJAX - onreadystatechange 事件.docx

    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { document.getElementById('myDiv').innerHTML = xmlhttp.responseText; } }; xmlhttp.open('GET', 'ajax_info.txt', true); xmlhttp.send(); ``` 在...

    用法JavaScript实现ajax的实例代码_.docx

    if ((xmlHttp.readyState == 4) && (xmlHttp.status == 200)) { alert('success'); } else { alert('fail'); } }; } // POST请求 function doPost(url, data) { createXmlHttpRequest(); xmlHttp.open(...

    asp+ajax静态分页

    if (xmlhttp.readyState==4 && xmlhttp.status==200) { //如果xmlhttp.readyState==4并且xmlhttp.status==200时,执行条件中的程序,其中readyState有五个值,4为请求完成,是客户端向服务器提交的数据成功到达,...

    简单的PHP+MySQL+AJAX留言板实例

    request = new ActiveXObject("Msxml2.XMLHTTP"); } catch (othermicrosoft) { try { request = new ActiveXObject("Microsoft.XMLHTTP"); } catch (failed) { request = false; } } } if (!...

    Ajax精短实例教程

    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { var text = xmlhttp.responseText; // 或者 var xmlDoc = xmlhttp.responseXML; } }; ``` ### 完整示例 下面是一个完整的Ajax GET请求示例,用于从...

    可用 js ajax代码

    alert("请求失败,错误码=" + xmlHttp.status); } } } ``` - **知识点**: - 使用 `getElementById` 获取 HTML 元素。 - 使用 `options` 属性操作 `&lt;select&gt;` 元素的选项。 - `eval` 函数执行字符串参数中包含...

    .net ajax示例

    if(xmlHttp.status==200){//成功 if(xmlHttp.responseText==""){ if(isEn==1){ document.getElementById("spanpwd").innerHTML="&lt;font color='red'&gt;Password error!&lt;/font&gt;" ; }else{ document.getElementById...

    ajax 教程

    if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { console.log(xmlHttp.responseText); } }; ``` #### 四、AJAX 的优势 1. **提高用户体验**:用户可以在不离开当前页面的情况下与网页互动,提高了...

    WEB开发 之 AJAX - 向服务器发送请求.docx

    if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { document.getElementById("myDiv").innerHTML = xmlhttp.responseText; } } ``` 使用AJAX技术可以实现客户端和服务器之间的异步通信,提高Web应用程序...

    一个无刷新效果定时自动更新页面的例子

    if (XmlHttp.status == 200) { setTimeout("pollServer()", 1000); refreshTime(); } else { alert("HTTP error: " + XmlHttp.status); } } } ``` 3. **发送请求**:打开连接并发送到服务器。 ```...

    原生JavaScript实现Ajax的方法_.docx

    if ((xmlHttp.readyState == 4) && (xmlHttp.status == 200)) { // 请求完成且响应成功 alert('success'); } else { alert('fail'); } }; } ``` #### 四、发送POST请求 除了GET请求外,还可以发送POST请求。...

    三级联动Ajax菜单(包含省市数据)

    if(xmlHttp.status==200){ if(type=="city"){ showcity(); }else if(type="area"){ showarea(); } } } } function showcity(){ document.getElementById("city").innerHTML=xmlHttp....

    神奇的_ajax框架

    if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { document.getElementById('result').innerHTML = xmlHttp.responseText; } }; ``` - `readyState`属性表示请求/响应过程中的不同状态: - **0**:...

    ajax代码及简单封装

    if (xmlhttp.status == 200) { alert(xmlhttp.responseText); } else { alert("AJAX错误"); } } }; ``` - **解读**: - `onreadystatechange`事件监听器会在每次`XMLHttpRequest`对象的状态发生变化时触发。...

    XMLHttpRequest

    if (xmlhttp.status == 200) { // 成功 // 处理响应... } ``` 6. **`statusText`**: - **作用**:返回文本形式的状态信息。 - **示例**: ```javascript alert("Status: " + xmlhttp.statusText); ``` 7...

    ajax方式载入外部页面数据的层打开效果.txt

    } else if (xmlhttp.readyState == 4 && xmlhttp.status == 404) { // 处理错误情况 $("Loading").innerHTML = '获取页面失败,文件不存在'; } }; xmlhttp.send(); } ``` #### 四、总结 本案例通过 AJAX ...

    java使用ajax实现进度条

    var percent_complete = xmlHttp.responseXML.getElementsByTagName("percent")[0].firstChild.data; var progress = document.getElementById("progress"); var progressPersent = document.getElementById(...

Global site tag (gtag.js) - Google Analytics