<script type="text/javascript">
function search(){
//发起Ajax请求,传递参数给服务器,服务器返回数据
//1.创建异步对象
var xmlHttp = new XMLHttpRequest();
//2.绑定事件
xmlHttp.onreadystatechange=function (){
if (xmlHttp.readyState==4&&xmlHttp.status==200){
//alert(xmlHttp.responseText);
//document.getElementById("proname").value = xmlHttp.responseText;
}
}
//3.初始异步对象
、、 var proid = document.getElementById("proid").value;
xmlHttp.open("get","服务器端访问地址"//+proid,true);
//4.发送请求
xmlHttp.send();
}
</script>
Ajax异步实现步骤
最新推荐文章于 2024-04-17 17:01:56 发布