Html表 - 仅选择一次选项

时间:2017-08-10 06:01:57

标签: html select html-table

我有桌子,我有一个显示选项的选择框。 enter image description here

当我在一行中选择一个不能在其他行中显示的值时。例如在下图中,在第一行中我选择了其他行中的休闲鞋,不得显示休闲鞋。enter image description here

欢迎任何有关示例或编码的帮助。谢谢!!

<td>
    <select name="proname[]" class="form-control proname">
        <option value="" selected="true" disabled="true">SelectProduct</option> @foreach($proname as $v)
        <option value="{{$v->itemname}}">{{$v->itemname}}</option> @endforeach
    </select>
</td>

在我的控制器中:

public function putbillpage() {
    $proname = productmodel::select('itemname')->get();
    return view('putbillpage', compact('proname'));
}

0 个答案:

没有答案