首先,我想对大家说嗨!
好的,我的问题很简单。我想展示第一个类别和他的第一个子类别。它是 Laravel 。我想删除"选择一个类别"和"选择一个子类别"并且默认情况下我想要列表中的第一个字符串。
谢谢!
分类
<select name="parent" id="parent" class="form-control selecter">
<option value="0" data-type=""
@if(old('parent')=='' or old('parent')==0)selected="selected"@endif> {{ t('Select a category') }} </option>
@foreach ($categories as $cat)
<option value="{{ $cat->tid }}" data-type="{{ $cat->type }}"
@if(old('parent')==$cat->tid)selected="selected"@endif> {{ $cat->name }} </option>
@endforeach
</select>
子类别:
<select name="category" id="category" class="form-control selecter">
<option value="0"
@if(old('category')=='' or old('category')==0)selected="selected"@endif> {{ t('Select a sub-category') }} </option>
</select>
脚本:
<script>
/* Categories */
var category = {{ old('parent', 0) }};
var categoryType = '{{ old('parent_type') }}';
if (categoryType=='') {
var selectedCat = $('select[name=parent]').find('option:selected');
categoryType = selectedCat.data('type');
}
var subCategory = {{ old('category', 0) }};
</script>