dongwei1954 2017-05-18 10:11
浏览 60
已采纳

从下拉列表中仅获取选定的值,并从下拉列表中删除未选中的值

I have two multiple dropdown in which one dropdown i have all the fields with all the values and in second drop down i have shown the selected value but with this all the other values are also coming which i have not selected ,i want to show only those three values which i have selected at the time of add record and values are saved comma separately in db(1,2,3). Below is my php code which shows selected value as well as all the other value also.So i want to remove that values from the second dropdown which i have not added.Where $state is a array which shows all the list of with there id and name.

  <div class="form-group end">
                <select id="second" multiple="true" name="states[]" id="states" >
                <?php
                    foreach($states as $key => $val){
                        $value = $val->id;
                        $name = $val->name;
                        $selected = 1,2,3;
                        $selected_values = explode(",",$selected);
                        echo "<option value='$value'".((in_array($value,$selected_values)) ? " selected='selected'":"").">$name</option>";
                     }
                     //var_dump($name);die;
                    ?>
               </select>

My multiple drop down is like this http://jsfiddle.net/h8zuc/

  • 写回答

1条回答 默认 最新

  • dongyin2643 2017-05-18 10:33
    关注

    try this: I am asuming this is your second dropdown:

    <div class="form-group end">
        <select id="second" multiple="true" name="states[]" id="states" >
            <?php
            foreach($states as $key => $val){
            $value = $val->id;
                    $name = $val->name;
                    $selected = "1,2,3";
                    $selected_values = explode(",",$selected);
                    if(in_array($value,$selected_values)){ 
                        echo "<option value='".$value."' selected='selected'>$name</option>"; 
                    }
                 }
                 //var_dump($name);die;
                ?>
        </select>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?