Bläddra i källkod

删除 'Mysql/WebRoot/Ajax.html'

1801010627 5 år sedan
förälder
incheckning
844de2b2ad
1 ändrade filer med 0 tillägg och 39 borttagningar
  1. 0 39
      Mysql/WebRoot/Ajax.html

+ 0 - 39
Mysql/WebRoot/Ajax.html

@@ -1,39 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-	<script type="text/javascript">
-	function ajaxFunction()
-{
-  var xmlhttp;
-  //判断浏览器
-  if (window.XMLHttpRequest)
-  { 
-    xmlhttp=new XMLHttpRequest();
-  }
-  else
-  {   
-    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
-  }
-  //每当readyState 改变时,就会触发 onreadystatechange 事件
-  xmlhttp.onreadystatechange=function()
-  {
-    if (xmlhttp.readyState==4 && xmlhttp.status==200)
-    {
-      document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
-    }
-  }
-  //XMLHttpRequest.open('post', url, true);
-  xmlhttp.open("post","visit.jsp",true);
-  //在利用xmlhttp的send()提交表格,并且需要在服务器端通过request.getParameter("paraName")来就收的话,先要加入header参数
-  xmlhttp.send();
-}
-	
-</script>
-</head>
-<body>
-
-<button type="button" onclick="ajaxFunction()" >点击刷新访客量</button>
-<div id="myDiv"></div>
-
-</body>
-</html>