JSP Ajax

html代码:
<!DOCTYPE html>
<html>
  <script>
  function display()
  {
   var div=document.getElementById("my");
   if(div.innerHTML!="")
   {
   div.innerHTML="";
   return;
   }
   var xmlHttp=new XMLHttpRequest();
   xmlHttp.open("GET","introduce.jsp",true);
   xmlHttp.onreadystatechange=function()
   {
   if(xmlHttp.readyState==4 && xmlHttp.status == 200)
   {div.innnerHTML=xmlHttp.responseText;
   }
   }xmlHttp.send();
  }
  </script>
  <body>
    <div id="my" style="background-color:yellow;widht:300px;height:400px"></div>
    <input type="button" onclick="display()" value="hehe">
  </body>
</html>


jsp代码:
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<html>
<body>
out.print("this is a demo");
</body>
</html>

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。