如果选择框有2个名称,如何在搜索后保留选择框的值?

时间:2017-09-08 08:29:41

标签: php

enter image description here enter image description here我有车载搜索过滤器的php页面,它连接到数据库。在这个页面中,我使用了1个字段选择框来选择21-24和25+的驱动程序的年龄,并在数据库中创建2列,其中driver_age为21-24,驱动器为25+,因为有些车辆可供两个年龄段的司机使用..所以我只希望当我从所有字段中选择值并单击搜索按钮时,字段中的值保持不变,因此用户知道他们搜索了什么,但我在驱动程序年龄字段中遇到问题,因为它在数据库中有2列.ALso请检查下面的代码..

$('#driver').change(function() {
  if($('#driver option:selected').val() == '21-24') {
    $('#driver').attr('name','driverage');
  }
  if($('#driver option:selected').val() == '25+') {
    $('#driver').attr('name','driver_age');
  }
});

<select class="half" id="driver" name="driverage" >
  <option value="21-24">21-24</option>
  <option value="25+">25+</option>        
</select>

database screenshot

FRont end screenshot

0 个答案:

没有答案