Laravel 4 Form Select:应用条件类

时间:2016-04-05 10:05:17

标签: php laravel select

{{ Form
.select('foo', {
    'foo': 'bar',
}) }}

我需要根据条件申请一个班级。例如,我有一个返回error

的抽象bool函数

如何应用'class' => 'error() ? 'my_class' : 'other_class'

我看过thisthis< - 没有成功

1 个答案:

答案 0 :(得分:1)

在Laravel 4中:

$('#flight-stops-filter ul li a').click(function() {
   var lis=$('#flight-stops-filter ul li.active');
   if (lis.length > 0 ) {
      alert(this.text);
   }
}

在Laravel 5中:

{{ Form::select('name', ['value' => 'Label', 'another-value => 'Label'], null, ['class' => error() ? 'class' : 'another-class']) }}