ajax局部刷新一个div下的jsp

前端之家收集整理的这篇文章主要介绍了ajax局部刷新一个div下的jsp前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

  用AJAX刷新一个DIV中的jsp内容

  <script type="text/javascript">

  var xmlhttp;

  function startrefresh(){

  xmlhttp=new XMLHttpRequest();

  xmlhttp.open("POST,"ss.jsp",true);

  xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");

  //xmlhttp.send("name=wk"); --需要传输参数时增加

  xmlhttp.onreadystatechange = function(){

  if(xmlhttp.readyState == 4)

  if(xmlhttp.status == 200)

  document.getElementById("mydvi").innerHTML=xmlhttp.responseText;

  }

  }

  </script>

  如果让这个div自动刷新的话,可以用setInterval('startrefresh()',5000),这个函数的作用是每隔5秒自动执行一次startrefresh方法,还有一种方法是setTimeout('startrefresh()',但是这个方法只会执行一次

原文链接:https://www.f2er.com/ajax/165758.html

猜你在找的Ajax相关文章