简体   繁体   中英

Selected Dropdown Box values needs to get selected in multiple dropdown boxes

I have 12 boxes, when I click each of the boxes, it pops out the modal dialog, Each of the modal dialog contains same dropdown box (same class name, same id, same name)for Eg. Country Dropdown selection.

When I choose the USA in the first box pop out drop down box, the selected value USA needs to get selected in the remaining 11 boxes pop out drop down box.

I am using HTML, javascript, jQuery and PHP.

Please kindly help some one using the above language or script to achieve this.

Thanks in advance.

apply same class to all select boxes then do

 $(document).ready(function(){

 $('.west-yorkshire').change(function(){

      var value = $(this).val();
     $('.west-yorkshire').each(function(){
       $(this).val(value);
     });
 });
 });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM