1

我在 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>
4

1 回答 1

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');
});    
于 2012-10-07T22:31:46.330 回答