实现
第一种PHP下拉框实现方法:
- < ?php
- //提交下拉框;
- //直接饱触发onchange事件的结果
- $id=$_GET['myselect']; // myselect 为location.herf?id的名字;
- echo $id;
- //用表单提交的结果;
- if($_POST["sendSelect"]){ //sendSelect 为表单的名字;
- $select_val=$_POST["selectID"];
- echo "你选择的值为: $select_val";
- }
- // print_r($_POST);
- $xing="xing";
- $fang="fang";
- echo '<ahref=del_03.php?id='.$xing.' &action='.$fang.'>flx< /a>';
- //php中,在删除内容时,给的提示的写法; href 后面必须加引号;
- echo "n"."<inputtype='button'value='删除'onclick="if(confirm('确定要删除吗')) { location.href='?delete=$result_manage[p_id]'}">
- <br><br>";
- }
- echo "<inputtype='button'value='connect_next' onclick="location.href='del_03.php?id= $xing&action=$fang'">";
- ?>
第二种PHP下拉框选择实现方法:
- <inputtype="button"value="delete"onclick=" if(confirm('确定要删除吗')) location.href= 'del_03.php?id=xing'"><br/>
- <scriptlanguage="JavaScript"type="text/javascript">
- function select(obj){
- window.location.href='del_04.php?myselect= '+obj.options[obj.selectedIndex].value;
- return; //可以不写;
- }
- < /script>
- <inputtype="button"value="delete"onclick="if(confirm('确定要删除吗')) location.href='del_03.php?id=xing'"><br/>
- <formname="myform"action="del_04.php"method="post">
- < !-- 直接触发onchange 事件 ,此时不用提交表单,-- >
- < !--<selectname="selectID"onchange= "location='del_04.php?myselect='+this.options [this.selectedIndex].value">-->
- < !-- 把onchange 的事件写在一个函数里面-- >
- <selectname="selectID"onchange="select(this)">
- < !-- <selectname="selectID">-->
- <optionvalue="0">请选择< /option>
- <optionvalue="value1">option1< /option>
- <optionvalue="value2">option2< /option>
- <optionvalue="value3">option3< /option>
- < /select>
- <inputtype="submit"name="sendSelect"value="提交下拉框"/>
- < /form>
以上就是PHP下拉框的两种实现方法介绍。
前两种方法选择后会刷新页面,刷新页面后列表框恢复默认值
以下方法再刷新后 保留选择的值
<select id="aa" name="aa" onChange="location='aa.php?aaselect='+this.options[this.selectedIndex].value" >
<option value="1" <? if($aaid=="1"){ echo "selected";}?>>全部类别</option><option value="2"<? if($aaid=="2"){ echo "selected";}?>>服装</option><option value="3"<? if($aaid=="3"){ echo "selected";}?>>鞋</option><option value="4"<? if($aaid=="4"){ echo "selected";}?>>理发</option><option value="5"<? if($aaid=="5"){ echo "selected";}?>>美食</option></select><?php if($_GET['aaselect']) $aaid=$_GET['aaselect'];
?>