Ajax for State and country组合框

时间:2010-09-15 06:46:19

标签: ajax jsp

用于JSP的状态和国家组合框的核心Ajax。

1 个答案:

答案 0 :(得分:0)

ajaxTest.jsp

<%@page contentType="text/html" pageEncoding="UTF-8" import="com.test.AjaxClass.*"%>

    
        AJAX页面         

        var XmlHttp=false;

        function CreateXmlHttp()
        {
            try
            {
                XmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); //for IE6
            }
            catch(e)
            {
                try
                {
                    XmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
                }
                catch(oc)
                {
                    XmlHttp = new XMLHttpRequest();//for browser mozila, opera, firefox.
                }
            }
        }

        function cState(){
            var countid = document.getElementById('country').value;                
            CreateXmlHttp();
            XmlHttp.onreadystatechange=HandleResponse;
            XmlHttp.open("GET", "any.jsp?r=Math.random()&countid="+countid, true);
            XmlHttp.send(null);
        }
        function HandleResponse(){
            var stateobj = document.getElementById("state");
            stateobj.options.length = 0;
            if(XmlHttp.readyState==4 || XmlHttp.readyState=="complete"){
                var XmlRoot = XmlHttp.responseXML.documentElement;
                var xRows = XmlRoot.getElementsByTagName("check");
                for(var i=0; i<xRows.length; i++){
                    var stateid = xRows[i].childNodes[0].firstChild.nodeValue;
                    var statename = xRows[i].childNodes[1].firstChild.nodeValue;
                    stateobj.options[i] = new Option(statename,stateid);
                }
            }
        }

    </script>
</head>
<body>
    <select onchange="cState();" name="country" id="country">
        <option value="0">Select Country</option>
        <%
                    for (CountryClass cc : ajax.getCoutryList()) {
        %>
        <option value="<%=cc.getCountryid()%>"><%=cc.getCountryName()%></option>
        <%                            }
        %>
    </select>
    <select name="state" id="state">

    </select>          
</body>

any.jsp

<?xml version="1.0"?>

&lt;%@ page contentType =“text / xml”pageEncoding =“UTF-8”import =“com.test.AjaxClass。*”%&gt;     &LT;%                 int countid = Integer.parseInt(request.getParameter(“countid”));                 //System.out.println("tt ::“+ countid);                 java.util.List statelist = call.changeState(countid);                 //System.out.println("length ::“+ statelist.size());                 for(StateClass sc:statelist){     %GT;                 &LT;%= sc.getStateid()%&GT;            &LT;%= sc.getStateName()%&GT;          &LT;%                 }     %GT;

AjaxClass.java

package com.test;

import java.util.ArrayList; import java.util.List;

public class AjaxClass {

private List<CountryClass> coutryList = new ArrayList<CountryClass>();

public List<CountryClass> getCoutryList() {
    coutryList.add(new CountryClass(1, "India"));
    coutryList.add(new CountryClass(2, "Pakistan"));
    coutryList.add(new CountryClass(3, "Bangladesh"));
    coutryList.add(new CountryClass(4, "U.A.E."));
    return coutryList;
}

public void setCoutryList(List<CountryClass> coutryList) {
    this.coutryList = coutryList;
}

public class CountryClass {

    public Integer countryid;
    public String countryName;

    public String getCountryName() {
        return countryName;
    }

    public void setCountryName(String countryName) {
        this.countryName = countryName;
    }

    public Integer getCountryid() {
        return countryid;
    }

    public void setCountryid(Integer countryid) {
        this.countryid = countryid;
    }

    public CountryClass(Integer countryid, String countryName) {
        this.countryid = countryid;
        this.countryName = countryName;
    }
}
private List<StateClass> stateList = new ArrayList<StateClass>();

public List<StateClass> getStateList() {
    stateList.add(new StateClass(1, 1, "Gujarat"));
    stateList.add(new StateClass(2, 1, "Maharashtra"));
    stateList.add(new StateClass(3, 2, "Karachi"));
    stateList.add(new StateClass(4, 2, "Lahore"));
    stateList.add(new StateClass(5, 3, "Dhaka"));
    stateList.add(new StateClass(6, 3, "Chittagong"));
    stateList.add(new StateClass(7, 4, "Dubai"));
    stateList.add(new StateClass(8, 4, "Behrin"));
    stateList.add(new StateClass(9, 4, "Sarjah"));
    return stateList;
}

public void setStateList(List<StateClass> stateList) {
    this.stateList = stateList;
}

public class StateClass {

    Integer stateid;
    Integer countryref;
    String stateName;

    public Integer getCountryref() {
        return countryref;
    }

    public void setCountryref(Integer countryref) {
        this.countryref = countryref;
    }

    public String getStateName() {
        return stateName;
    }

    public void setStateName(String stateName) {
        this.stateName = stateName;
    }

    public Integer getStateid() {
        return stateid;
    }

    public void setStateid(Integer stateid) {
        this.stateid = stateid;
    }

    public StateClass(Integer stateid, Integer countryref, String stateName) {
        this.stateid = stateid;
        this.countryref = countryref;
        this.stateName = stateName;
    }
}

public List<StateClass> changeState(Integer countryref) {
    List<StateClass> newList = new ArrayList<AjaxClass.StateClass>();
    for (StateClass stateClass : getStateList()) {
        if (stateClass.countryref == countryref) {
            newList.add(stateClass);
        }
    }
    return  newList;
}

}