1. 程式人生 > >html與jsp互相傳值示例

html與jsp互相傳值示例

index.html:

<html>
<head>
<script type="text/javascript">
function loadXMLDoc()
{
var xmlhttp;
var msg;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
      document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
     
      alert(xmlhttp.responseText);
    }
  }
xmlhttp.open("POST","returnData.jsp",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("fname=Bill&lname=Gates");
}
</script>
</head>
<body>
<h2>AJAX</h2>
<button type="button" onclick="loadXMLDoc()">請求資料</button>
<div id="myDiv"></div>
</body>
</html>

returnData.jsp:

 <%@ page import="java.io.*,java.util.*" %>
<%
   String CT=request.getParameter("fname");
   out.println("Current name is: "+CT);
%>

    提示:把這兩個檔案放到tomcat的html目錄下,通過http://localhost:8080/html/index.html,可以看到結果。

   總結:html通過ajax裡的XMLHttpRequest來傳值給jsp以及得到jsp返回的值,

               jsp通過request.getParameter();來獲取值,通過 out.println來傳值。