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 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题
  • ¥15 delta降尺度计算的一些细节,有偿
  • ¥15 Arduino红外遥控代码有问题
  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办