zoukankan      html  css  js  c++  java
  • JS异步请求数据

    不刷新页面,不需要Jquery等等

    JS代码

    var http = new ActiveXObject("Microsoft.XMLHTTP");
    http.open("Get","demo.do?status=c&name="+name,false);
    http.send();
    alert(http.responseText);

     Java代码

    public class DemoAction
        extends DispatchAction {

         public ActionForward c(ActionMapping mapping,ActionForm form,HttpServletRequest request,HttpServletResponse response) throws Exception {
         String name= new String(request.getParameter("name").getBytes("ISO-8859-1"), "gbk");

        request.setAttribute("ch","aaa");
        return (mapping.findForward("ch"));
      }
    }
     
    struts.xml
      <action type="com.DemoAction" parameter="status" path="/demo" >
        <forward name="ch" path="/ch.jsp" />
      </action>

    ch.jsp代码

    <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %><%String ch=(String)request.getAttribute("ch");

     

  • 相关阅读:
    分治策略
    uva 11424
    lightoj 1214
    lightoj 1282 && uva 11029
    lightoj 1341
    zoj 2369 Two Cylinders
    几种素数筛法
    lightoj 1245
    hdoj 1299 Diophantus of Alexandria
    求前n项正整数的倒数和
  • 原文地址:https://www.cnblogs.com/zf2011/p/2608715.html
Copyright © 2011-2022 走看看