当前位置:编程学习 > JS >>

Ajax 的实现局部刷新,高手进

asp中怎样使用ajax进行局部的刷新,不使用updatepanel ,发相关的实现代码,谢谢
答案:<html> <body> <script type="text/javascript"> function ajaxFunction() { var xmlHttp; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("您的浏览器不支持AJAX!"); return false; } } } xmlHttp.onreadystatechange=function() { if(xmlHttp.readyState==4) { document.myForm.time.value=xmlHttp.responseText; } } xmlHttp.open("GET","time.asp",true); xmlHttp.send(null); } </script> <form name="myForm"> 用户: <input type="text" name="username" onkeyup="ajaxFunction();" /> 时间: <input type="text" name="time" /> </form> </body> </html> 下面是time.asp的代码:<% response.expires=-1 response.write(time) %> 给你个网址,那里你会学到很多东西的www.w3school.com.cnhttp://www.jpg.org.cn/html/wangluobiancheng/AJAX/5647.html 使用AJAX技术实现网页无闪自动局部刷新-AJAX编程教程
只会Java的Ajax局部异步处理

上一个:AJAX的具体工作原理是什么?
下一个:ajax返回状态成功 但是数据没有更新?

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,