在页面刷新时保留基于选择框的值

时间:2012-10-07 21:58:29

标签: php javascript

我在mysql和数据库的下拉选择菜单中遇到问题

每当我从下拉选择值页面重新加载和页面刷新然后返回选项选择选项?

function getComboB(sel) { 

var roomtype=document.getElementById("roomtype");
var value = sel.options[sel.selectedIndex].value;
checkin.action = "checkin.php?item_combo="+value+"";
checkin.submit();

}



<select name="roomtype" id="roomtype" style="width:150px;"  onchange="getComboB(this)">

  <option><--Select--> </option>


       $query=mysql_query("SELECT * FROM roomtype order by id");
      while($row=mysql_fetch_assoc($query))
      {

    $val2=$row['id'];

    ?>
     <option  value="<?=$val2;?>"  <? if ($roomtype  == $val2) { echo "selected='selected'"; }?> > <?=$row['roomtype'];?> </option>


      <?php }?>


    </select>

1 个答案:

答案 0 :(得分:1)

简而言之,我同意这个问题的格式非常糟糕。

由于您从未提交过,因此刷新实际上并不会保留任何值。通过cookie或回调将值存储到服务器以将其存储在会话中。至于显示这里是另一种选择。


传递所选选项并使用javascript选择它。

$(document).ready(function() {
var theValue= "<?php echo "YourSelected Value"?> " // Or fetch from cookie.
$("#roomtype").find("select:eq(2)").find("option[value="+theValue+']').attr('selected','selected');
});