Second-level linkage (JQUERY-AJAX-JSON-SPRINGMVC)

Source: Internet
Author: User

HTML code

<select id= "firstdepartment" onchange= "onchange ()" > <option value= "0" >1</option>
<option value= "1" >1</option>
<option value= "2" >2</option></select><select id= "Seconddepartment"/>

JS Code

//firstlevelname drop-down box
Secondlevelname level Two drop-down box

function OnChange () {var firstlevelname= $ (' #firstDepartment '). Val (); $.ajax ({URL:' Getsecondlevelnames ', type:' Get ', ContentType:"Application/json; Charset=utf-8 ", Data:{firstlevelname:firstlevelname}, DataType:' JSON ', Success:function (data) {var names=Data.secondlevelnames; $(' #secondDepartment '). empty (); for(var i in Names) {$ ("<option value = '" + decodeURI (Names[i]) + ">" + decodeURI (Names[i]) + "</option>"). AppendTo ($ (' #secondDepa Rtment ')); } } } ); }

Background code

    @RequestMapping (value = "/getsecondlevelnames", method = requestmethod.get)    public @ Responsebody string Getsecondlevelnames (@RequestParam (value = "Firstlevelname") string firstlevelname) {         List<String> secondlevelname = levelutil.getsecondlevelnames (firstlevelname);         New Jsonobject ();        Json.put ("Secondlevelnames", secondlevelname);         return json.tostring ();    }

Second-level linkage (JQUERY-AJAX-JSON-SPRINGMVC)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.