如何使用Illuminate / Html在Laravel中设置禁用选择选项

时间:2015-04-21 11:31:35

标签: php forms laravel blade illuminate-container

我从Laravel开始,我使用Illuminate / Html制作表格。

我想在第一个选项中添加禁用属性,但我找不到这样做的方法。

{!! Form::open(['url' => 'shelter/pets']) !!}
    <div class="form-group">
        {!! Form::label('pet_type','Type:') !!}
        {!! Form::select('pet_type', ['Select Type','dog', 'cat'], 0, ['class' => 'form-control']) !!}
    </div>
    <div class="form-group">
        {!! Form::submit('Add pet', null, ['class' => 'btn btn-primary form-control']) !!}
    </div>
{!! Form::close() !!}

6 个答案:

答案 0 :(得分:7)

只需传递disabled中的options即可。试试 -

{!! Form::select('pet_type', ['Select Type','dog', 'cat'], 0, ['class' => 'form-control', 'disabled' => true]) !!}

您可以在php中手动循环遍历数组或使用jquery。

$('select.someclass option:first').attr('disabled', true);

答案 1 :(得分:2)

纵观消息来源,看起来似乎不可能。 <select>元素是在https://github.com/illuminate/html/blob/master/FormBuilder.php#L532

处构建的

传递的唯一args是值,名称和选定的布尔值。看起来你有2个解决方案。使用javascript(argh),或使用类似str_replace的内容。

<?php

    $field = Form::select('pet_type', ['Select Type','dog', 'cat'], 0, ['class' => 'form-control']);

    // find value="Select Type" and replace with value="Select Type" dialled
    echo str_replace('value="Select Type"', 'value="Select Type" disabled', $field);

?>

答案 2 :(得分:1)

这可能不是您正在寻找的,但它会阻止用户选择第一个选项,但仍然在列表中。

Form::select支持A Grouped List,您可以这样使用它。

{!! Form::select('pet_type', ['Select Type' => ['dog', 'cat']], 0, ['class' => 'form-control']) !!}

更多详情:http://laravel.com/docs/4.2/html#drop-down-lists

答案 3 :(得分:0)

最后一个数组用于形成html标记的属性,因此您可以简单地将其禁用到其中:

    {!! Form::select('pet_type', ['Select Type','dog', 'cat'], 0, ['class' => 'form-control', 'disabled' => 'disabled']) !!}

答案 4 :(得分:0)

这可以帮助您

Form::select('name_select', '', null, ['name' => '', 'id' => '', 'disabled' => 'disabled']) 

答案 5 :(得分:0)

作为这里的函数签名: 供应商/laravelcollective/html/src/FormBuilder.php 行 #625 :

/**
     * Create a select box field.
     *
     * @param  string $name
     * @param  array  $list
     * @param  string|bool $selected
     * @param  array  $selectAttributes
     * @param  array  $optionsAttributes
     * @param  array  $optgroupsAttributes
     *
     * @return \Illuminate\Support\HtmlString
     */
    public function select(
        $name,
        $list = [],
        $selected = null,
        array $selectAttributes = [],
        array $optionsAttributes = [],
        array $optgroupsAttributes = []
    )

所以你可以这样使用它:

{!! Form::select('pet_type', 
    ['Select Type','dog', 'cat'],
     0, //default selection
    ['class' => 'form-control'], //the select tag attributes
    [ 0 => [ "disabled" => true ] ] //list of option attrbitues (option value is the arrays key)
) !!}