這次帶給大家怎樣實作html的可輸入下拉選單,實作html的可輸入下拉選單的注意事項有哪些,下面就是實戰案例,一起來看一下。
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> </head> <body> <?php echo ' <form name="DDForm" method="GET" action=""> <p style=" position :relative;"> <span style=" margin-left :100px;width:18px; overflow :hidden;"> <select style="width:180px;margin-left:-100px" onchange ="this.parentNode.nextSibling.value=this.value" name="hh"> <option value="汽车">汽车 </option> <option value="火车"> 火车 </option> <option value="飞机"> 飞机 </option> </select> </span><input name="box" style="width:160px;position:absolute;left:0px;"> <input value="提交" name="submit" type="submit"/> </p> </form>'; $aa=$_GET['hh']."111"; // select 下拉菜单的值 $bb=$_GET['box']."222"; // 输入框的值 echo $aa; echo "</br>"; echo $bb; // 要获得可输入下拉菜单的值,只要获得输入框的值即可。 ?> </body> </html>
要獲得可輸入下拉式選單的值,只要獲得輸入框的值即可。
注意:
</span><input name="box" style="width:160px;position:absolute;left:0px;">
這行要在一行中,不能寫成
</span> <input name="box" style="width:160px;position:absolute;left:0px;">
換行了之後則下拉選單的值不能顯示在 輸入框中。
也可以根據輸入的內容自動選擇符合的選單值。
相信看了這些案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
相關閱讀:
#怎麼實現點擊按鈕文字變成input框,點選儲存變成文字的實現的效果
canvas.toDataURL image/png 報錯應該怎麼處理
以上是怎樣實現html的可輸入下拉式選單的詳細內容。更多資訊請關注PHP中文網其他相關文章!