DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> html 可輸入下拉菜單的實現方法
html 可輸入下拉菜單的實現方法
編輯:HTML和Xhtml     

復制代碼代碼如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<?php
echo '
<form name="DDForm" method="GET" action="">
<div 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"/>
</div>
</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;">

換行了之後則下拉菜單的值不能顯示在 輸入框中。

還可以根據輸入的內容自動選擇匹配的菜單值。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved